mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
23 lines
647 B
Objective-C
23 lines
647 B
Objective-C
#import "TGBridgeSubscription.h"
|
|
|
|
@class TGBridgeMediaAttachment;
|
|
|
|
@interface TGBridgeAudioSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) TGBridgeMediaAttachment *attachment;
|
|
@property (nonatomic, readonly) int64_t conversationId;
|
|
@property (nonatomic, readonly) int32_t messageId;
|
|
|
|
- (instancetype)initWithAttachment:(TGBridgeMediaAttachment *)Attachment conversationId:(int64_t)conversationId messageId:(int32_t)messageId;
|
|
|
|
@end
|
|
|
|
|
|
@interface TGBridgeAudioSentSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) int64_t conversationId;
|
|
|
|
- (instancetype)initWithConversationId:(int64_t)conversationId;
|
|
|
|
@end
|