WFCCGroupSearchInfo.m 597 B

12345678910111213141516171819202122
  1. //
  2. // WFCCGroupSearchInfo.m
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/10/22.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCGroupSearchInfo.h"
  9. @implementation WFCCGroupSearchInfo
  10. - (id)toJsonObj {
  11. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  12. id groupDict = [self.groupInfo toJsonObj];
  13. dict[@"groupInfo"] = groupDict;
  14. dict[@"marchType"] = @(self.marchType);
  15. dict[@"keyword"] = self.keyword;
  16. if(self.marchedMemberNames.count)
  17. dict[@"marchedMemberNames"] = self.marchedMemberNames;
  18. return dict;
  19. }
  20. @end