TUIRelationUserModel.h 535 B

123456789101112131415161718192021222324
  1. //
  2. // TUIRelationUserModel.h
  3. // TIMCommon
  4. //
  5. // Created by wyl on 2023/12/5.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUIRelationUserModel : NSObject
  11. @property(nonatomic, copy) NSString *userID;
  12. @property(nonatomic, copy) NSString *nickName;
  13. @property(nonatomic, copy) NSString *faceURL;
  14. @property(nonatomic, copy) NSString *friendRemark;
  15. @property(nonatomic, copy) NSString *nameCard;
  16. - (NSString *)getDisplayName;
  17. @end
  18. NS_ASSUME_NONNULL_END