2022-03-07 19:31:53 +08:00
|
|
|
//
|
|
|
|
// ClientDataModel.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2022/3/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.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;
|
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-03-07 19:31:53 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|