| 1234567891011121314151617181920212223 |
- //
- // MsgSysVC.h
- // YBVideo
- //
- // Created by YunBao on 2018/8/2.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MessageListModel.h"
- typedef void (^MsgSysVCBlock)(int type);
- @interface MsgSysVC : YBBaseViewController
- @property(nonatomic,assign)BOOL isWhiteStyle;
- @property(nonatomic,assign)UiFrom uiFrom;
- @property(nonatomic,strong)MessageListModel *listModel;
- @property (nonatomic,copy) MsgSysVCBlock block;
- - (void)imSmallViewReload;
- @end
|