20 lines
370 B
Objective-C
20 lines
370 B
Objective-C
//
|
|
// ClientDataModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ClientDataModel : NSObject
|
|
///首页tag 配置
|
|
@property (nonatomic,strong) NSArray<NSString *> *homeTabList;
|
|
///房间表情的数据
|
|
@property (nonatomic,copy) NSDictionary *faceInitData;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|