Swiftgram/LegacyComponents/TGMediaPickerGalleryItem.h
2017-07-28 16:50:06 +03:00

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