123456789101112131415161718192021222324 |
- //
- // ChatMsgNoticeVC.h
- // smartRhino
- //
- // Created by armin on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- ///通知 主界面
- @interface ChatMsgNoticeVC : BaseViewController
- @property (nonatomic,assign) NSInteger NoticeFolderId;
- @property (assign,nonatomic) SuperPageTypeChatMsgNotice fromModular;
- @property (copy,nonatomic) NSString * titleStr;
- @property (assign,nonatomic) BOOL isHome;
- +(ChatMsgNoticeVC *)initChatMsgNoticeVC;
- @end
- NS_ASSUME_NONNULL_END
|