forked from loafle/openapi-generator-original
17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
#import "{{classPrefix}}QueryParamCollection.h"
|
|
|
|
@implementation {{classPrefix}}QueryParamCollection
|
|
|
|
@synthesize values = _values;
|
|
@synthesize format = _format;
|
|
|
|
- (id) initWithValuesAndFormat: (NSArray*) values
|
|
format: (NSString*) format {
|
|
_values = values;
|
|
_format = format;
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|