WFCCUserInfo.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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, strong)NSString *friendAlias;
  61. /**
  62. 群昵称
  63. */
  64. @property (nonatomic, strong)NSString *groupAlias;
  65. /**
  66. 更新时间
  67. */
  68. @property (nonatomic, assign)long long updateDt;
  69. /**
  70. 用户类型
  71. */
  72. @property (nonatomic, assign) int type;
  73. /**
  74. 是否被删除用户
  75. */
  76. @property (nonatomic, assign) int deleted;
  77. - (void)cloneFrom:(WFCCUserInfo *)other;
  78. @end