forked from loafle/openapi-generator-original
12 lines
288 B
Objective-C
12 lines
288 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface SWGQueryParamCollection : NSObject
|
|
|
|
@property(nonatomic, readonly) NSArray* values;
|
|
@property(nonatomic, readonly) NSString* format;
|
|
|
|
- (id) initWithValuesAndFormat: (NSArray*) values
|
|
format: (NSString*) format;
|
|
|
|
@end
|