33 lines
856 B
Objective-C
33 lines
856 B
Objective-C
//
|
|
// AnchorLevelModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/12/13.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface AnchorLevelModel : NSObject
|
|
///uid
|
|
@property (nonatomic,assign) NSInteger uid;
|
|
/// 最高等级需要的钻石数
|
|
@property (nonatomic,assign) NSInteger currentDiamond;
|
|
///最高等级s
|
|
@property (nonatomic,assign) NSInteger targetDiamond;
|
|
///等级 S / A / B / C / D
|
|
@property (nonatomic,copy) NSString *grade;
|
|
///当前回复率,小数点形式
|
|
@property (nonatomic,assign) CGFloat currentReply;
|
|
///本周期结束剩余时长(秒)
|
|
@property (nonatomic,assign) int nextRemaining;
|
|
///最高等级需要的回复率
|
|
@property (nonatomic,assign) CGFloat targetReply;
|
|
///本地字段
|
|
///下一个等级 S / A / B / C / D
|
|
@property (nonatomic,copy) NSString *nextGrade;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|