20 lines
319 B
C
20 lines
319 B
C
|
|
//
|
||
|
|
// OSSProgressModel.h
|
||
|
|
// LNMobileProject
|
||
|
|
//
|
||
|
|
// Created by Reyna on 2021/1/14.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface OSSProgressModel : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, assign) int64_t currentBytes;
|
||
|
|
@property (nonatomic, assign) int64_t totalBytes;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|