mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
17 lines
433 B
Objective-C
17 lines
433 B
Objective-C
#import "TGBridgeMediaAttachment.h"
|
|
|
|
@interface TGBridgeAudioMediaAttachment : TGBridgeMediaAttachment
|
|
|
|
@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;
|
|
|
|
@end
|