mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
14 lines
414 B
Objective-C
14 lines
414 B
Objective-C
#import "TGWebSearchResult.h"
|
|
|
|
@class TGImageInfo;
|
|
|
|
@interface TGWebSearchInternalImageResult : NSObject <TGWebSearchResult>
|
|
|
|
@property (nonatomic, readonly) int64_t imageId;
|
|
@property (nonatomic, readonly) int64_t accessHash;
|
|
@property (nonatomic, strong, readonly) TGImageInfo *imageInfo;
|
|
|
|
- (instancetype)initWithImageId:(int64_t)imageId accessHash:(int64_t)accessHash imageInfo:(TGImageInfo *)imageInfo;
|
|
|
|
@end
|