Repository URL to install this package:
//
// DEFileDownloadProgressData.h
// DynamicEngine
//
// Created by Mobile3D on 26/01/15.
// Copyright (c) 2015 Mobile3D. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface DEFileDownloadProgressData : NSObject
- (instancetype) initWithDownloadTag:(NSString *) downloadTag bytesDownloaded:(long long) bytesDownloaded ofTotalBytes:(long long) totalBytes;
- (NSString *) callbackDataAsString;
@property (nonatomic,readonly) NSString* downloadTag;
@property (nonatomic,readonly) long long bytesDownloaded;
@property (nonatomic,readonly) long long totalBytes;
@end