FindChatItemsModel.h 942 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // FindChatItemsModel.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSInteger,FindMsgTpye){
  10. FindAllType = 0,
  11. FindTextType,
  12. FindPhotoType,
  13. FindFileType,
  14. FindVideoType,
  15. FindSoundType,
  16. };
  17. //整数 < int32 >
  18. //消息类型(1文本2图片3文件4视频5语音)
  19. NS_ASSUME_NONNULL_BEGIN
  20. @interface FindChatItemsModel : NSObject
  21. @property (nonatomic,copy) NSString * AvatarUrl;
  22. @property (nonatomic,copy) NSString * Content;
  23. @property (nonatomic,copy) NSString * CreatedDate;
  24. @property (nonatomic,copy) NSString * FileUrl;
  25. @property (nonatomic,copy) NSString * Name;
  26. @property (nonatomic,assign) NSInteger ChatType;
  27. @property (nonatomic,assign) NSInteger ImId;
  28. @property (nonatomic,assign) FindMsgTpye MsgType;
  29. @property (nonatomic,assign) NSInteger ReceiveUserId;
  30. @end
  31. NS_ASSUME_NONNULL_END