WFCCGroupSearchInfo.h 675 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // WFCCGroupSearchInfo.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 "WFCCGroupInfo.h"
  10. /**
  11. 群组搜索信息
  12. */
  13. @interface WFCCGroupSearchInfo : NSObject
  14. /**
  15. 命中的群组
  16. */
  17. @property (nonatomic, strong)WFCCGroupInfo *groupInfo;
  18. /**
  19. 命中的类型 0, 名字群组名字; 1,命中群成员名称;2,都命中
  20. */
  21. @property (nonatomic, assign)int marchType;
  22. /**
  23. 命中群成员名称
  24. */
  25. @property (nonatomic, strong)NSArray *marchedMemberNames;
  26. /**
  27. 搜索的关键字
  28. */
  29. @property (nonatomic, strong)NSString *keyword;
  30. @end