You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
4 years ago
|
//
|
||
|
// TFSystemInfoManager.h
|
||
|
// WXReader
|
||
|
//
|
||
|
// Created by 谢腾飞 on 2020/12/3.
|
||
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TFSystemInfoManager : NSObject
|
||
|
// 主货币单位
|
||
|
@property (nonatomic ,copy ,class) NSString *masterUnit;
|
||
|
// 子货币单位
|
||
|
@property (nonatomic ,copy ,class) NSString *subUnit;
|
||
|
// 首页性别频道:1:男,2:女
|
||
|
@property (nonatomic ,assign ,class) NSInteger sexChannel;
|
||
|
// 审核状态
|
||
|
@property (nonatomic ,copy ,class) NSString *magicStatus;
|
||
|
// 隐私协议同意状态
|
||
|
@property (nonatomic ,assign ,class) BOOL isAgree;
|
||
|
// 阅读任务记录作品id
|
||
|
@property (nonatomic ,copy ,class) NSString *taskReadProductionId;
|
||
|
// 默认手机区号
|
||
|
@property (nonatomic ,copy ,class) NSString *zoneNumber;
|
||
|
// 首次性别选择,可能为nil
|
||
|
@property (nonatomic ,copy ,class ,nullable) NSString *firstGenderSelecte;
|
||
|
|
||
|
+ (instancetype)allocWithZone:(struct _NSZone *)zone UNAVAILABLE_ATTRIBUTE;
|
||
|
|
||
|
+ (instancetype)alloc UNAVAILABLE_ATTRIBUTE;
|
||
|
|
||
|
+ (instancetype)new UNAVAILABLE_ATTRIBUTE;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|