TapDBConfig.h 518 B

123456789101112131415161718192021
  1. //
  2. // TapDBConfig.h
  3. // TapCommonSDK
  4. //
  5. // Created by Bottle K on 2021/4/19.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface TapDBConfig : NSObject
  10. @property (nonatomic, assign) BOOL enable;
  11. @property (nonatomic, copy) NSString *channel;
  12. @property (nonatomic, copy) NSString *gameVersion;
  13. @property (nonatomic, copy) NSDictionary *deviceLoginProperties;
  14. @property (nonatomic, assign, getter=isAdvertiserIDCollectionEnabled) BOOL advertiserIDCollectionEnabled;
  15. @end
  16. NS_ASSUME_NONNULL_END