Wrap server entry

This commit is contained in:
Sergey Abramchuk
2017-04-26 15:41:38 +03:00
parent 423ee16f53
commit 410ccdd916
5 changed files with 82 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
//
// OpenVPNServerEntry.h
// OpenVPN Adapter
//
// Created by Sergey Abramchuk on 26.04.17.
//
//
#import <Foundation/Foundation.h>
@interface OpenVPNServerEntry : NSObject
@property (nullable, readonly, nonatomic) NSString *server;
@property (nullable, readonly, nonatomic) NSString *friendlyName;
- (nonnull instancetype) __unavailable init;
@end