66 lines
2.2 KiB
Objective-C
66 lines
2.2 KiB
Objective-C
//
|
|
// ClientDataModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/3/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ClientRedPacketModel.h"
|
|
#import "AdvertiseModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, FaceLivenessStrategy) {
|
|
FaceLivenessStrategy_Pass = 0,
|
|
FaceLivenessStrategy_Force = 1,
|
|
FaceLivenessStrategy_Guide = 2,
|
|
};
|
|
|
|
@interface ClientDataModel : NSObject
|
|
///首页tag 配置
|
|
@property (nonatomic,strong) NSArray<NSString *> *homeTabList;
|
|
///房间表情的数据
|
|
@property (nonatomic,copy) NSDictionary *faceInitData;
|
|
///是否隐藏房间公告
|
|
@property (nonatomic,assign) BOOL appStoreAuditNoticeVersion;
|
|
//进入房间拉取N条聊天数据
|
|
@property(nonatomic, assign) NSInteger roomMessageCount;
|
|
///发现萌新展示等级
|
|
@property (nonatomic,assign) NSInteger findNewbieCharmLevel;
|
|
///送礼物隐藏座驾动画的值
|
|
@property (nonatomic,assign) double hideCarEffectGiftPrice;
|
|
//航海等级限制
|
|
@property (nonatomic, assign) NSInteger linearlyPoolOpenLevel;
|
|
///红包配置
|
|
@property (nonatomic, strong) ClientRedPacketModel *redEnvelopeConfig;
|
|
///启动图
|
|
@property (nonatomic,strong) AdvertiseModel *splashVo;
|
|
///官方消息Uid列表
|
|
@property (nonatomic, strong) NSArray<NSString *> *officialMsgUids;
|
|
///官方账号 小秘书 红包消息
|
|
@property (nonatomic,strong) NSArray<NSString *> *officialAccountUids;
|
|
///星座礼物顶部是否开启
|
|
@property (nonatomic,assign) BOOL twelveStarSwitch;
|
|
/// 开房是否需要实名
|
|
@property (nonatomic,assign) FaceLivenessStrategy certificationType;
|
|
|
|
///转赠钻石白名单
|
|
@property (nonatomic,strong) NSMutableArray *giveDiamondErbanNoList;
|
|
///转赠礼物白名单
|
|
@property (nonatomic,strong) NSMutableArray *giveGiftErbanNoList;
|
|
///每日转赠钻石总额限制
|
|
@property (nonatomic,assign) NSInteger giveDiamondDailyNum;
|
|
///转赠钻石单笔最大限额
|
|
@property (nonatomic,assign) NSInteger giveDiamondOnceLimitNum;
|
|
///转赠钻石财富等级
|
|
@property (nonatomic,assign) NSInteger giveDiamondExperLevel;
|
|
///转赠礼物财富等级
|
|
@property (nonatomic,assign) NSInteger giveGiftExperLevel;
|
|
|
|
///转赠手续费率
|
|
@property (nonatomic,assign) double giveDiamondRate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|