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