27 lines
670 B
Objective-C
27 lines
670 B
Objective-C
//
|
|
// MewClientDataModel.h
|
|
// yinmeng-ios
|
|
//
|
|
// Created by duoban on 2023/12/5.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MewClientDataModel : NSObject
|
|
|
|
/// 首页tag 配置
|
|
@property (nonatomic,strong) NSArray<NSString *> *homeTabList;
|
|
/// 进入房间拉取N条聊天数据
|
|
@property(nonatomic, assign) NSInteger roomMessageCount;
|
|
///启动图
|
|
//@property (nonatomic,strong) AdvertiseModel *splashVo;
|
|
///官方消息Uid列表
|
|
@property (nonatomic, strong) NSArray<NSString *> *officialMsgUids;
|
|
///官方账号 小秘书 红包消息
|
|
@property (nonatomic,strong) NSArray<NSString *> *officialAccountUids;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|