mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
15 lines
506 B
Objective-C
15 lines
506 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "TGWebSearchResult.h"
|
|
|
|
@interface TGExternalGifSearchResult : NSObject <TGWebSearchResult>
|
|
|
|
@property (nonatomic, strong, readonly) NSString *url;
|
|
@property (nonatomic, strong, readonly) NSString *originalUrl;
|
|
@property (nonatomic, strong, readonly) NSString *thumbnailUrl;
|
|
@property (nonatomic, readonly) CGSize size;
|
|
|
|
- (instancetype)initWithUrl:(NSString *)url originalUrl:(NSString *)originalUrl thumbnailUrl:(NSString *)thumbnailUrl size:(CGSize)size;
|
|
|
|
@end
|