blob: a98ccc5c479180f5ea36815bf524ca432ecfee9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// TestProgressResponse.h
// SmartDeviceLink-iOS
//
// Created by Nicole on 8/17/17.
// Copyright © 2017 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface TestProgressResponse : 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
|