1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGModernGallerySelectableItem.h

14 lines
316 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TGModernGalleryItem.h"
2016-02-25 01:03:51 +01:00
@protocol TGMediaSelectableItem;
@class TGMediaSelectionContext;
2015-10-01 18:19:52 +02:00
@protocol TGModernGallerySelectableItem <TGModernGalleryItem>
2016-02-25 01:03:51 +01:00
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
2015-10-01 18:19:52 +02:00
2016-02-25 01:03:51 +01:00
- (id<TGMediaSelectableItem>)selectableMediaItem;
2015-10-01 18:19:52 +02:00
- (NSString *)uniqueId;
@end