Blame view

BT Vendor/IncidentLog.h 445 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  IncidentLog.h
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 10/8/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "CommunicationProtocol.h"
#import "Incident.h"

@interface IncidentLog : NSObject

@property (strong,nonatomic) NSString *response;
@property (strong,nonatomic) NSMutableArray *incidents;

- (id) init;
Imanol-Mikel Barba Sabariego authored
19
- (void) setResponseValue : (NSString *)response;
Imanol-Mikel Barba Sabariego authored
20
21

@end