mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
27 lines
559 B
Objective-C
27 lines
559 B
Objective-C
#import "TGBridgeSubscription.h"
|
|
|
|
@interface TGBridgeUserInfoSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) NSArray *userIds;
|
|
|
|
- (instancetype)initWithUserIds:(NSArray *)userIds;
|
|
|
|
@end
|
|
|
|
|
|
@interface TGBridgeUserBotInfoSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) NSArray *userIds;
|
|
|
|
- (instancetype)initWithUserIds:(NSArray *)userIds;
|
|
|
|
@end
|
|
|
|
@interface TGBridgeBotReplyMarkupSubscription : TGBridgeSubscription
|
|
|
|
@property (nonatomic, readonly) int64_t peerId;
|
|
|
|
- (instancetype)initWithPeerId:(int64_t)peerId;
|
|
|
|
@end
|