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