Files
OpenVPNAdapter/OpenVPN Adapter/OpenVPNConfiguration.h
Sergey Abramchuk 1fbf4e52b3 Wrap content list
2017-04-22 20:19:28 +03:00

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