ChatMsgNoticeVC.h 545 B

123456789101112131415161718192021222324
  1. //
  2. // ChatMsgNoticeVC.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. ///通知 主界面
  11. @interface ChatMsgNoticeVC : BaseViewController
  12. @property (nonatomic,assign) NSInteger NoticeFolderId;
  13. @property (assign,nonatomic) SuperPageTypeChatMsgNotice fromModular;
  14. @property (copy,nonatomic) NSString * titleStr;
  15. @property (assign,nonatomic) BOOL isHome;
  16. +(ChatMsgNoticeVC *)initChatMsgNoticeVC;
  17. @end
  18. NS_ASSUME_NONNULL_END