1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-12 17:37:33 +01:00
Telegram/Watch/Bridge/TGBridgeRemoteSubscription.h

13 lines
415 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#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