mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
13 lines
385 B
Objective-C
13 lines
385 B
Objective-C
#import <LegacyComponents/TGModernGalleryImageItem.h>
|
|
#import <LegacyComponents/TGMediaAsset.h>
|
|
|
|
@interface TGMediaPickerGalleryItem : NSObject <TGModernGalleryItem>
|
|
|
|
@property (nonatomic, strong) TGMediaAsset *asset;
|
|
@property (nonatomic, strong) UIImage *immediateThumbnailImage;
|
|
@property (nonatomic, assign) bool asFile;
|
|
|
|
- (instancetype)initWithAsset:(TGMediaAsset *)asset;
|
|
|
|
@end
|