36 lines
1.0 KiB
Objective-C
36 lines
1.0 KiB
Objective-C
//
|
|
// ClientDataModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ClientRedPacketModel.h"
|
|
#import "AdvertiseModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@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;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|