// // SalesLog.h // DUREX Vendor Control // // Created by Imanol Barba on 07/09/14. // Copyright (c) 2014 Emmoco. All rights reserved. // #import @interface SalesLog : NSObject @property (strong,nonatomic) NSString *response; @property (strong,nonatomic) NSMutableArray *sales; - (id) init; - (void) setResponseValue:(NSString *)response; @end