18 lines
415 B
Objective-C
18 lines
415 B
Objective-C
//
|
|
// DemoConfigLoader.h
|
|
// NewHttpDNSTestDemo
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface DemoConfigLoader : NSObject
|
|
|
|
@property (nonatomic, copy, readonly) NSString *appId;
|
|
@property (nonatomic, copy, readonly) NSString *primaryServiceHost;
|
|
@property (nonatomic, assign, readonly) NSInteger servicePort;
|
|
@property (nonatomic, copy, readonly, nullable) NSString *signSecret;
|
|
|
|
+ (instancetype)shared;
|
|
|
|
@end
|