1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-12 09:29:55 +01:00
Telegram/Telegraph/TGExternalImageSearchResult.h

14 lines
538 B
C
Raw Normal View History

2016-02-25 01:03:51 +01:00
#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