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

33 lines
839 B
C
Raw Normal View History

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