mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-22 03:58:47 +00:00
14 lines
255 B
Objective-C
14 lines
255 B
Objective-C
#import "MTNetworkUsageCalculationInfo.h"
|
|
|
|
@implementation MTNetworkUsageCalculationInfo
|
|
|
|
- (instancetype)initWithFilePath:(NSString *)filePath {
|
|
self = [super init];
|
|
if (self != nil) {
|
|
_filePath = filePath;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|