Files
OpenVPNAdapter/Sources/OpenVPNAdapter/library/OpenVPNDhcpOptionEntry.h
T
2020-09-06 15:03:47 -03:00

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