26 lines
681 B
Objective-C
Executable File
26 lines
681 B
Objective-C
Executable File
//
|
|
// YYRoomSetPeopleModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2023/12/20.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYRoomSetPeopleModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *id;
|
|
@property (nonatomic, copy) NSString *uid;
|
|
@property (nonatomic, copy) NSString *nick_name;
|
|
@property (nonatomic, copy) NSString *head_pic;
|
|
@property (nonatomic, copy) NSString *ratio;//比例
|
|
@property (nonatomic, copy) NSString *room_owner_ratio;//房主比例
|
|
@property (nonatomic, copy) NSString *today_profit;//今日收益
|
|
@property (nonatomic, copy) NSString *today_host_time;//今日主持时长 单位分钟
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|