1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-22 22:11:31 +01:00
Telegram/Watch/Bridge/TGBridgeAudioMediaAttachment.h

17 lines
433 B
C
Raw Normal View History

2015-10-01 19:19:52 +03:00
#import "TGBridgeMediaAttachment.h"
@interface TGBridgeAudioMediaAttachment : TGBridgeMediaAttachment
2016-02-25 01:03:51 +01:00
@property (nonatomic, assign) int64_t audioId;
@property (nonatomic, assign) int64_t accessHash;
@property (nonatomic, assign) int32_t datacenterId;
@property (nonatomic, assign) int64_t localAudioId;
@property (nonatomic, assign) int32_t duration;
@property (nonatomic, assign) int32_t fileSize;
- (int64_t)identifier;
2015-10-01 19:19:52 +03:00
@end