33 lines
839 B
Objective-C
33 lines
839 B
Objective-C
//
|
|
// ClientConfig.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ClientDataModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ClientConfig : NSObject
|
|
+ (instancetype)shareConfig;
|
|
///初始化
|
|
- (void)clientInit;
|
|
//TODO: 直接使用model吧 下个版本改
|
|
/// iOS第三方登录是否需要绑定手机号
|
|
@property (nonatomic,assign) BOOL iosPhoneBind;;
|
|
/// 是否开启了糖果树
|
|
@property (nonatomic,assign) BOOL openCandyTree;
|
|
///配置信息
|
|
@property (nonatomic,strong) ClientDataModel *configInfo;
|
|
///开箱子 大于等级 展示
|
|
@property (nonatomic, assign) NSInteger openCandyTreeLimitLevel;
|
|
///表情---
|
|
@property (nonatomic, copy) NSString *version;
|
|
@property (nonatomic, copy) NSString *zipMd5;
|
|
@property (nonatomic, strong) NSURL *zipUrl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|