All Downloads are FREE. Search and download functionalities are using the official Maven repository.

objc.QueryParamCollection-body.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
#import "{{classPrefix}}QueryParamCollection.h"

@implementation {{classPrefix}}QueryParamCollection

@synthesize values = _values;
@synthesize format = _format;

- (id)initWithValuesAndFormat:(NSArray *)values
                       format:(NSString *)format {

    self = [super init];
    if (self) {
        _values = values;
        _format = format;
    }

    return self;
}

@end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy