29 lines
711 B
C
29 lines
711 B
C
|
//
|
||
|
// TapConfig.h
|
||
|
// TapBootstrapSDK
|
||
|
//
|
||
|
// Created by Bottle K on 2021/2/24.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <TapCommonSDK/TapDBConfig.h>
|
||
|
#import <TapCommonSDK/TapBillboardConfig.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
typedef NS_ENUM (NSInteger, TapSDKRegionType) {
|
||
|
TapSDKRegionTypeCN,
|
||
|
TapSDKRegionTypeIO
|
||
|
};
|
||
|
|
||
|
@interface TapConfig : NSObject
|
||
|
@property (nonatomic, copy) NSString *clientId;
|
||
|
@property (nonatomic, copy) NSString *clientToken;
|
||
|
@property (nonatomic, copy) NSString *serverURL;
|
||
|
@property (nonatomic, assign) TapSDKRegionType region;
|
||
|
@property (nonatomic, strong) TapDBConfig * dbConfig;
|
||
|
@property (nonatomic, strong) TapBillboardConfig *tapBillboardConfig;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|