// // ChatMsgSearchModel.h // smartRhino // // Created by taidi on 2019/12/11. // Copyright © 2019 tederen. All rights reserved. // #import "BaseModel.h" #import "ChatMsgSearchModelSub.h" NS_ASSUME_NONNULL_BEGIN @protocol ChatMsgSearchModel @end @interface ChatMsgSearchModel : BaseModel @property (nonatomic,strong) NSMutableArray *Items; @property (nonatomic,assign) NSInteger Total; @end NS_ASSUME_NONNULL_END