Files
openapi-generator/samples/client/petstore/objc/client/SWGDate.h
2013-10-18 14:43:26 -07:00

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