123456789101112131415161718192021 |
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgEditVC : BaseViewController
- @property (nonatomic, assign) BOOL IsMove;
- @property (nonatomic, strong) NSArray *dataArray;
- @property (nonatomic, copy) void(^upDataBlock)(void);
- +(ChatMsgEditVC *)initChatMsgEditVC;
- @end
- NS_ASSUME_NONNULL_END
|