mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
29 lines
536 B
Objective-C
29 lines
536 B
Objective-C
//
|
|
// OpenVPNConfiguration.h
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 21.04.17.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
// TODO: Wrap ClientAPI::Config into Objective-C class
|
|
|
|
@interface OpenVPNConfiguration : NSObject
|
|
|
|
/**
|
|
OpenVPN profile as a NSData
|
|
*/
|
|
@property (nullable, nonatomic) NSData *fileContent;
|
|
|
|
/**
|
|
OpenVPN profile as series of key/value pairs (may be provided exclusively
|
|
or in addition to file content).
|
|
*/
|
|
@property (nullable, nonatomic) NSDictionary<NSString *, NSString *> *settings;
|
|
|
|
|
|
|
|
@end
|