Swiftgram/LegacyComponents/TGMediaPickerGalleryItem.h
Ilya Laktyushin 04a9ce1abb no message
2018-02-21 14:46:20 +03:00

14 lines
512 B
Objective-C

#import <LegacyComponents/TGModernGalleryImageItem.h>
#import <LegacyComponents/TGMediaEditingContext.h>
#import <LegacyComponents/TGMediaSelectionContext.h>
@interface TGMediaPickerGalleryItem : NSObject <TGModernGalleryItem>
@property (nonatomic, strong) id<TGMediaEditableItem, TGMediaSelectableItem> asset;
@property (nonatomic, strong) UIImage *immediateThumbnailImage;
@property (nonatomic, assign) bool asFile;
- (instancetype)initWithAsset:(id<TGMediaEditableItem, TGMediaSelectableItem>)asset;
@end