WFCCFriend.h 594 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // WFCCFriend.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2021/5/16.
  6. // Copyright © 2021 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCJsonSerializer.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCCFriend : WFCCJsonSerializer
  12. /*
  13. 好友ID
  14. */
  15. @property(nonatomic, strong)NSString *userId;
  16. /*
  17. 好友昵称
  18. */
  19. @property(nonatomic, strong)NSString *alias;
  20. /*
  21. 扩展信息,添加方式等
  22. */
  23. @property(nonatomic, strong)NSString *extra;
  24. /*
  25. 添加好友时间
  26. */
  27. @property(nonatomic, assign)long long timestamp;
  28. @end
  29. NS_ASSUME_NONNULL_END