forked from loafle/openapi-generator-original
18 lines
307 B
Objective-C
18 lines
307 B
Objective-C
#import "SWGObject.h"
|
|
|
|
@implementation SWGObject
|
|
|
|
- (id) initWithValues:(NSDictionary*)dict {
|
|
return self;
|
|
}
|
|
|
|
- (NSDictionary*) asDictionary{
|
|
return [NSDictionary init];
|
|
}
|
|
|
|
- (NSString*)description {
|
|
return [NSString stringWithFormat:@"%@ %@", [super description], [self asDictionary]];
|
|
}
|
|
|
|
@end
|