增加换肤功能
This commit is contained in:
44
QXLive/Mine(音域)/Model/QXUserDressModel.h
Normal file
44
QXLive/Mine(音域)/Model/QXUserDressModel.h
Normal file
@@ -0,0 +1,44 @@
|
||||
//
|
||||
// QXUserDressModel.h
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/6/6.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface QXUserDressModel : NSObject
|
||||
/// 装扮ID
|
||||
@property (nonatomic,strong)NSString *udid;
|
||||
/// 用户id
|
||||
@property (nonatomic,strong)NSString *user_id;
|
||||
/// 是否使用 1使用中2未使用
|
||||
@property (nonatomic,strong)NSString *is_using;
|
||||
/// 到期时间
|
||||
@property (nonatomic,strong)NSString *end_time;
|
||||
/// 是否永久 1是2否
|
||||
@property (nonatomic,strong)NSString *is_perpetual;
|
||||
/// 靓号
|
||||
@property (nonatomic,strong)NSString *special_num;
|
||||
/// 装饰名称
|
||||
@property (nonatomic,strong)NSString *title;
|
||||
/// 装饰图片
|
||||
@property (nonatomic,strong)NSString *base_image;
|
||||
/// 效果
|
||||
@property (nonatomic,strong)NSString *play_image;
|
||||
/// 类型
|
||||
@property (nonatomic,strong)NSString *type;
|
||||
/// 剩余时间 (天)
|
||||
@property (nonatomic,strong)NSString *remaining_day;
|
||||
@end
|
||||
|
||||
|
||||
@interface QXUserDressTypeModel : NSObject
|
||||
/// 类型id
|
||||
@property (nonatomic,strong)NSString *id;
|
||||
/// 类型name
|
||||
@property (nonatomic,strong)NSString *name;
|
||||
@end
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user