WFCCConversationSearchInfo.h 636 B

12345678910111213141516171819202122232425262728293031323334353637
  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. /**
  12. 会话搜索信息
  13. */
  14. @interface WFCCConversationSearchInfo : NSObject
  15. /**
  16. 会话
  17. */
  18. @property (nonatomic, strong)WFCCConversation *conversation;
  19. /**
  20. 命中的消息
  21. */
  22. @property (nonatomic, strong)WFCCMessage *marchedMessage;
  23. /**
  24. 命中数量
  25. */
  26. @property (nonatomic, assign)int marchedCount;
  27. /**
  28. 搜索关键字
  29. */
  30. @property (nonatomic, strong)NSString *keyword;
  31. @end