2
0

WFCCSecretChatInfo.m 542 B

123456789101112131415161718192021
  1. //
  2. // WFCCFriend.m
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2021/5/16.
  6. // Copyright © 2021 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCSecretChatInfo.h"
  9. @implementation WFCCSecretChatInfo
  10. - (id)toJsonObj {
  11. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  12. dict[@"targetId"] = self.targetId;
  13. dict[@"userId"] = self.userId;
  14. dict[@"state"] = @(self.state);
  15. dict[@"burnTime"] = @(self.burnTime);
  16. [self setDict:dict key:@"createTime" longlongValue:self.createTime];
  17. return dict;
  18. }
  19. @end