2
0

WFCCConversationSearchInfo.h 747 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // WFCCConversationSearchInfo.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/10/22.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCConversation.h"
  10. #import "WFCCMessage.h"
  11. #import "WFCCJsonSerializer.h"
  12. /**
  13. 会话搜索信息
  14. */
  15. @interface WFCCConversationSearchInfo : WFCCJsonSerializer
  16. /**
  17. 会话
  18. */
  19. @property (nonatomic, strong)WFCCConversation *conversation;
  20. /**
  21. 命中的消息
  22. */
  23. @property (nonatomic, strong)WFCCMessage *marchedMessage;
  24. /**
  25. 命中数量
  26. */
  27. @property (nonatomic, assign)int marchedCount;
  28. /**
  29. 搜索关键字
  30. */
  31. @property (nonatomic, strong)NSString *keyword;
  32. /**
  33. 会话时间
  34. */
  35. @property (nonatomic, assign)int64_t timestamp;
  36. @end