mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
13 lines
415 B
Objective-C
13 lines
415 B
Objective-C
#import "TGBridgeSubscription.h"
|
|
|
|
@interface TGBridgeRemoteSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) int64_t peerId;
|
|
@property (nonatomic, readonly) int32_t messageId;
|
|
@property (nonatomic, readonly) int32_t type;
|
|
@property (nonatomic, readonly) bool autoPlay;
|
|
|
|
- (instancetype)initWithPeerId:(int64_t)peerId messageId:(int32_t)messageId type:(int32_t)type autoPlay:(bool)autoPlay;
|
|
|
|
@end
|