Files
yinmeng-ios/xplan-ios/Main/Tabbar/ClientDataModel.h
2022-09-08 11:33:42 +08:00

34 lines
945 B
Objective-C

//
// ClientDataModel.h
// xplan-ios
//
// Created by 冯硕 on 2022/3/7.
//
#import <Foundation/Foundation.h>
#import "ClientRedPacketModel.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;
@end
NS_ASSUME_NONNULL_END