25 lines
770 B
Objective-C
25 lines
770 B
Objective-C
//
|
|
// RoomSailingRankModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/8/12.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPEnum.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSailingRankModel : NSObject
|
|
@property (copy, nonatomic) NSString * uid;
|
|
@property (copy, nonatomic) NSString *nick;
|
|
@property (copy, nonatomic) NSString *avatar; //头像
|
|
@property (nonatomic,strong) NSString *badge;//徽章
|
|
@property (nonatomic,strong) NSString *micDecorate;//头饰
|
|
@property (copy, nonatomic) NSString *goldAmount;//房间send/receive钻石总数
|
|
@property (strong, nonatomic) NSNumber *amount;//房间许愿池排行榜钻石
|
|
@property (copy, nonatomic) NSString *ranking;//排名
|
|
@property (nonatomic,assign) BOOL hide;//是否榜单隐身
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|