summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/TestFileProgressResponse.h
blob: f7b28ad52484be22de85174e7163e3306df93b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  TestFileProgressResponse.h
//  SmartDeviceLink-iOS
//
//  Created by Nicole on 8/17/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TestFileProgressResponse : NSObject

@property (strong, nonatomic) NSString *testFileName;
@property (nonatomic) float testUploadPercentage;
@property (strong, nonatomic) NSError *testError;

- (instancetype)initWithFileName:(NSString *)testFileName testUploadPercentage:(float)testUploadPercentage error:(NSError *)testError;

@end