WFCCUserInfo.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // WFCCUserInfo.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/29.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. 用户信息
  11. */
  12. @interface WFCCUserInfo : NSObject
  13. /**
  14. 用户ID
  15. */
  16. @property (nonatomic, strong)NSString *userId;
  17. /**
  18. 名称
  19. */
  20. @property (nonatomic, strong)NSString *name;
  21. /**
  22. 显示的名称
  23. */
  24. @property (nonatomic, strong)NSString *displayName;
  25. /**
  26. 性别
  27. */
  28. @property (nonatomic, assign)int gender;
  29. /**
  30. 头像
  31. */
  32. @property (nonatomic, strong)NSString *portrait;
  33. /**
  34. 手机号
  35. */
  36. @property (nonatomic, strong)NSString *mobile;
  37. /**
  38. 邮箱
  39. */
  40. @property (nonatomic, strong)NSString *email;
  41. /**
  42. 地址
  43. */
  44. @property (nonatomic, strong)NSString *address;
  45. /**
  46. 公司信息
  47. */
  48. @property (nonatomic, strong)NSString *company;
  49. /**
  50. 社交信息
  51. */
  52. @property (nonatomic, strong)NSString *social;
  53. /**
  54. 扩展信息
  55. */
  56. @property (nonatomic, strong)NSString *extra;
  57. /**
  58. 更新时间
  59. */
  60. @property (nonatomic, assign)long long updateDt;
  61. - (void)cloneFrom:(WFCCUserInfo *)other;
  62. @end