// // PBUserHomePageModel.h // PBSDK // // Created by LStar on 2025/1/25. // #import NS_ASSUME_NONNULL_BEGIN @interface PBUserHomePageModel : NSObject /** 用户年纪,整数类型(int32) */ @property (nonatomic, assign) NSInteger age; /** 预约状态,0 表示未开启预约,1 表示开启预约,整数类型(int32) */ @property (nonatomic, assign) NSInteger appointmentStatus; /** 用户生日,字符串类型 */ @property (nonatomic, copy) NSString *birthday; /** 用户所在城市,字符串数组 */ @property (nonatomic, strong) NSArray *city; /** 用户注册时间,字符串类型,格式为日期时间 */ @property (nonatomic, copy) NSString *createTime; /** 用户的电子邮件地址,字符串类型 */ @property (nonatomic, copy) NSString *email; /** 用户的粉丝数量,整数类型(int32) */ @property (nonatomic, assign) NSInteger fansNumber; /** 用户头像的链接,字符串类型 */ @property (nonatomic, copy) NSString *icon; /** 用户 ID,整数类型(int64) */ @property (nonatomic, assign) long long ID; /** 主播自我介绍视频的链接,字符串类型 */ @property (nonatomic, copy) NSString *introduceVideoUrl; /** 用户标签,字符串数组 */ @property (nonatomic, strong) NSArray *label; /** 用户昵称,字符串类型 */ @property (nonatomic, copy) NSString *nickname; /** 用户个性签名(个人介绍),字符串类型 */ @property (nonatomic, copy) NSString *personalizedSignature; /** 用户手机号码,字符串类型 */ @property (nonatomic, copy) NSString *phone; /** 用户星座,字符串类型 */ @property (nonatomic, copy) NSString *starSign; /** 帐号启用状态,0 表示启用,1 表示禁用,整数类型(int32) */ @property (nonatomic, assign) NSInteger status; /** 用户特长(擅长的方面),字符串数组 */ @property (nonatomic, strong) NSArray *strongPoint; /** 用户名,字符串类型 */ @property (nonatomic, copy) NSString *username; @end @interface PBUserHomePageSubscribeModel : NSObject ///封面地址 @property (nonatomic, copy) NSString *cover; ///时间 @property (nonatomic, copy) NSString *subscribeTime; ///标题 @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *liveRoomCode; @property (nonatomic, copy) NSString *liveRoomIMCode; @property (nonatomic, copy) NSString *rtcToken; @end NS_ASSUME_NONNULL_END