mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
13 lines
420 B
C
13 lines
420 B
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
|