mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
13 lines
391 B
Objective-C
13 lines
391 B
Objective-C
#import "TGModernGalleryImageItem.h"
|
|
|
|
@class TGImageInfo;
|
|
|
|
@interface TGGroupAvatarGalleryItem : TGModernGalleryImageItem <TGModernGalleryItem>
|
|
|
|
@property (nonatomic, readonly) int32_t messageId;
|
|
|
|
- (instancetype)initWithMessageId:(int32_t)messageId legacyThumbnailUrl:(NSString *)legacyThumbnailUrl legacyUrl:(NSString *)legacyUrl imageSize:(CGSize)imageSize;
|
|
- (NSString *)filePath;
|
|
|
|
@end
|