23 lines
543 B
Objective-C
23 lines
543 B
Objective-C
//
|
|
// QXRoomUserCharmModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/9/8.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRoomUserCharmModel : NSObject
|
|
@property (nonatomic,strong)NSArray *icon;
|
|
@property (nonatomic,strong)NSString *total_price;
|
|
@property (nonatomic,strong)NSString *nickname;
|
|
@property (nonatomic,strong)NSString *user_id;
|
|
@property (nonatomic,strong)NSString *avatar;
|
|
@property (nonatomic,strong)NSString *user_code;
|
|
@property (nonatomic,strong)NSString *charm;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|