MsgSysVC.h 489 B

1234567891011121314151617181920212223
  1. //
  2. // MsgSysVC.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/8/2.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MessageListModel.h"
  10. typedef void (^MsgSysVCBlock)(int type);
  11. @interface MsgSysVC : YBBaseViewController
  12. @property(nonatomic,assign)BOOL isWhiteStyle;
  13. @property(nonatomic,assign)UiFrom uiFrom;
  14. @property(nonatomic,strong)MessageListModel *listModel;
  15. @property (nonatomic,copy) MsgSysVCBlock block;
  16. - (void)imSmallViewReload;
  17. @end