ChatMsgSearchModel.h 444 B

123456789101112131415161718192021
  1. //
  2. // ChatMsgSearchModel.h
  3. // smartRhino
  4. //
  5. // Created by taidi on 2019/12/11.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. #import "ChatMsgSearchModelSub.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ChatMsgSearchModel
  12. @end
  13. @interface ChatMsgSearchModel : BaseModel
  14. @property (nonatomic,strong) NSMutableArray <ChatMsgSearchModelSub>*Items;
  15. @property (nonatomic,assign) NSInteger Total;
  16. @end
  17. NS_ASSUME_NONNULL_END