123456789101112131415161718192021222324252627 |
- //
- // AntiAddictionConfig.h
- // AntiAddictionUI
- //
- // Created by 黄驿峰 on 2022/8/31.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSInteger, AntiAddictionRegion) {
- AntiAddictionRegionChina
- };
- @interface AntiAddictionConfig : NSObject
- @property (nonatomic, strong) NSString *clientID;
- @property (nonatomic, assign) BOOL useTapLogin;
- @property (nonatomic, assign) BOOL showSwitchAccount;
- @property (nonatomic, assign) AntiAddictionRegion region;
- - (instancetype)init;
- @end
- NS_ASSUME_NONNULL_END
|