mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
18 lines
343 B
Objective-C
18 lines
343 B
Objective-C
//
|
|
// OpenVPNDhcpOptionEntry.h
|
|
// Pods
|
|
//
|
|
// Created by Dener Araújo on 06/09/20.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface OpenVPNDhcpOptionEntry : NSObject
|
|
|
|
@property (nullable, readonly, nonatomic) NSString *type;
|
|
@property (nullable, readonly, nonatomic) NSString *address;
|
|
|
|
- (nonnull instancetype) init NS_UNAVAILABLE;
|
|
|
|
@end
|