2022-03-07 19:31:53 +08:00
|
|
|
//
|
|
|
|
// ClientDataModel.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2022/3/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2022-09-01 19:05:09 +08:00
|
|
|
#import "ClientRedPacketModel.h"
|
2022-03-07 19:31:53 +08:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface ClientDataModel : NSObject
|
2022-03-07 19:32:44 +08:00
|
|
|
///首页tag 配置
|
|
|
|
@property (nonatomic,strong) NSArray<NSString *> *homeTabList;
|
2022-03-10 16:18:26 +08:00
|
|
|
///房间表情的数据
|
|
|
|
@property (nonatomic,copy) NSDictionary *faceInitData;
|
2022-03-16 21:33:02 +08:00
|
|
|
///是否隐藏房间公告
|
|
|
|
@property (nonatomic,assign) BOOL appStoreAuditNoticeVersion;
|
2022-04-25 17:45:57 +08:00
|
|
|
//进入房间拉取N条聊天数据
|
|
|
|
@property(nonatomic, assign) NSInteger roomMessageCount;
|
2022-06-16 21:27:47 +08:00
|
|
|
///发现萌新展示等级
|
|
|
|
@property (nonatomic,assign) NSInteger findNewbieCharmLevel;
|
2022-08-09 16:50:17 +08:00
|
|
|
///送礼物隐藏座驾动画的值
|
|
|
|
@property (nonatomic,assign) double hideCarEffectGiftPrice;
|
2022-08-19 17:42:14 +08:00
|
|
|
//航海等级限制
|
|
|
|
@property (nonatomic, assign) NSInteger linearlyPoolOpenLevel;
|
2022-09-01 19:05:09 +08:00
|
|
|
///红包配置
|
|
|
|
@property (nonatomic, strong) ClientRedPacketModel *redEnvelopeConfig;
|
|
|
|
|
2022-03-07 19:31:53 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|