AntiAddictionConfig.h 543 B

123456789101112131415161718192021222324252627
  1. //
  2. // AntiAddictionConfig.h
  3. // AntiAddictionUI
  4. //
  5. // Created by 黄驿峰 on 2022/8/31.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef NS_ENUM(NSInteger, AntiAddictionRegion) {
  10. AntiAddictionRegionChina
  11. };
  12. @interface AntiAddictionConfig : NSObject
  13. @property (nonatomic, strong) NSString *clientID;
  14. @property (nonatomic, assign) BOOL useTapLogin;
  15. @property (nonatomic, assign) BOOL showSwitchAccount;
  16. @property (nonatomic, assign) AntiAddictionRegion region;
  17. - (instancetype)init;
  18. @end
  19. NS_ASSUME_NONNULL_END