Files
yinmeng-ios/xplan-ios/Main/Tabbar/ClientDataModel.h

34 lines
945 B
C
Raw Normal View History

//
// 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"
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;
///是否隐藏房间公告
@property (nonatomic,assign) BOOL appStoreAuditNoticeVersion;
//进入房间拉取N条聊天数据
@property(nonatomic, assign) NSInteger roomMessageCount;
///发现萌新展示等级
@property (nonatomic,assign) NSInteger findNewbieCharmLevel;
///送礼物隐藏座驾动画的值
@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;
@end
NS_ASSUME_NONNULL_END