Files
openapi-generator/modules/swagger-codegen/src/main/resources/objc/SWGQueryParamCollection.m
2015-03-27 22:17:50 -07:00

16 lines
311 B
Objective-C

#import "SWGQueryParamCollection.h"
@implementation SWGQueryParamCollection
@synthesize values = _values;
@synthesize format = _format;
- (id) initWithValuesAndFormat: (NSArray*) values
format: (NSString*) format {
_values = values;
_format = format;
return self;
}
@end