23 lines
480 B
Objective-C
23 lines
480 B
Objective-C
//
|
|
// CodFisResponse.m
|
|
// CodFis-Helper
|
|
//
|
|
// Created by Giuseppe Nucifora on 09/07/15.
|
|
// Copyright (c) 2015 Giuseppe Nucifora. All rights reserved.
|
|
//
|
|
|
|
#import "CodFisResponse.h"
|
|
|
|
@implementation CodFisResponse
|
|
|
|
- (instancetype) initWithResponse:(NSString*) response andErrors:(NSArray*) responseErrors {
|
|
self = [super init];
|
|
if (self) {
|
|
_responseErrors = [NSArray arrayWithArray:responseErrors];
|
|
_response = response;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|