mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 00:21:19 +00:00
12 lines
234 B
Objective-C
12 lines
234 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
@interface SWGDate : SWGObject {
|
|
@private
|
|
NSDate *_date;
|
|
}
|
|
@property(nonatomic, readonly) NSDate* date;
|
|
|
|
- (id) initWithValues: (NSString*)input;
|
|
-(NSString*) toString;
|
|
@end |