ChatMsgSearchModelSub.h 842 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ChatMsgSearchModelSub.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. NS_ASSUME_NONNULL_BEGIN
  10. @protocol ChatMsgSearchModelSub
  11. @end
  12. @interface ChatMsgSearchModelSub : BaseModel
  13. @property (nonatomic,strong) NSString *AvatarUrl;
  14. @property (nonatomic,strong) NSString *Content;
  15. @property (nonatomic,strong) NSString *CreatedDate;
  16. @property (nonatomic,strong) NSString *Id;
  17. @property (nonatomic,strong) NSString *ImId;
  18. @property (nonatomic,strong) NSString *Name;
  19. ///文件夹类型 1 通知 2 通讯录 3 单聊 4群聊 5 文章
  20. @property (nonatomic,assign) NSInteger SearchType;
  21. @property (nonatomic,strong) NSString *Title;
  22. @property (nonatomic,assign) NSInteger ToUserId;
  23. @property (nonatomic,assign) NSInteger UserId;
  24. @end
  25. NS_ASSUME_NONNULL_END