123456789101112131415161718192021 |
- //
- // ChatMsgListVC.h
- // smartRhino
- //
- // Created by armin on 2019/11/2.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "PushModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgListVC : BaseViewController
- @property (nonatomic,strong) PushModel * pModel;
- @property (nonatomic,assign) BOOL isPush;
- +(ChatMsgListVC *)initChatMsgListVC;
- @end
- NS_ASSUME_NONNULL_END
|