Files
yinmeng-ios/xplan-ios/Main/Mine/Model/AnchorLevel/AnchorLevelModel.h

35 lines
962 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;
///是否是白名单用户 白名单用户不展示弹框
@property (nonatomic,assign) BOOL inWhitelist;
///本地字段
///下一个等级 S / A / B / C / D
@property (nonatomic,copy) NSString *nextGrade;
@end
NS_ASSUME_NONNULL_END