TapDBConfig.h 453 B

1234567891011121314151617181920
  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, assign, getter=isAdvertiserIDCollectionEnabled) BOOL advertiserIDCollectionEnabled;
  14. @end
  15. NS_ASSUME_NONNULL_END