1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 02:17:51 +01:00
Telegram/Share/TGFileLocation.h
2015-10-01 19:19:52 +03:00

13 lines
420 B
Objective-C

#import <Foundation/Foundation.h>
@interface TGFileLocation : NSObject
@property (nonatomic, readonly) NSInteger datacenterId;
@property (nonatomic, readonly) int64_t volumeId;
@property (nonatomic, readonly) int32_t localId;
@property (nonatomic, readonly) int64_t secret;
- (instancetype)initWithDatacenterId:(NSInteger)datacenterId volumeId:(int64_t)volumeId localId:(int32_t)localId secret:(int64_t)secret;
@end