ChatMsgListVC.h 420 B

123456789101112131415161718192021
  1. //
  2. // ChatMsgListVC.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "PushModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ChatMsgListVC : BaseViewController
  12. @property (nonatomic,strong) PushModel * pModel;
  13. @property (nonatomic,assign) BOOL isPush;
  14. +(ChatMsgListVC *)initChatMsgListVC;
  15. @end
  16. NS_ASSUME_NONNULL_END