mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-17 00:31:09 +00:00
14 lines
333 B
Objective-C
14 lines
333 B
Objective-C
#import <LegacyComponents/TGModernGalleryItem.h>
|
|
|
|
@protocol TGMediaSelectableItem;
|
|
@class TGMediaSelectionContext;
|
|
|
|
@protocol TGModernGallerySelectableItem <TGModernGalleryItem>
|
|
|
|
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
|
|
|
|
- (id<TGMediaSelectableItem>)selectableMediaItem;
|
|
- (NSString *)uniqueId;
|
|
|
|
@end
|