mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
12 lines
371 B
Objective-C
12 lines
371 B
Objective-C
#import "TGBotContextResult.h"
|
|
|
|
#import "TGImageMediaAttachment.h"
|
|
|
|
@interface TGBotContextImageResult : TGBotContextResult
|
|
|
|
@property (nonatomic, strong, readonly) TGImageMediaAttachment *image;
|
|
|
|
- (instancetype)initWithQueryId:(int64_t)queryId resultId:(NSString *)resultId type:(NSString *)type image:(TGImageMediaAttachment *)image sendMessage:(id)sendMessage;
|
|
|
|
@end
|