26 lines
579 B
Objective-C
26 lines
579 B
Objective-C
//
|
|
// SessionSayHelloLevelModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2023/2/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SessionSayHelloLevelModel : PIBaseModel
|
|
///当前主播评级
|
|
@property (nonatomic,copy) NSString *currentLevel;
|
|
///当前倍数
|
|
@property (nonatomic,copy) NSString * currentMultiple;
|
|
///开启状态
|
|
@property (nonatomic,assign) BOOL enable;
|
|
///文案描述:提升下一级....
|
|
@property (nonatomic,copy) NSString *desc;
|
|
///打招呼的数量
|
|
@property (nonatomic,assign) NSInteger helloCount;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|