forked from loafle/openapi-generator-original
11 lines
198 B
Objective-C
11 lines
198 B
Objective-C
#import "NIKSwaggerObject.h"
|
|
|
|
@implementation NIKSwaggerObject
|
|
- (id) initWithValues: (NSDictionary*)dict {
|
|
return self;
|
|
}
|
|
- (NSDictionary*) asDictionary{
|
|
return [NSDictionary init];
|
|
}
|
|
@end
|