mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-22 21:44:46 +00:00
17 lines
473 B
Objective-C
17 lines
473 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <LegacyComponents/TGMediaEditingContext.h>
|
|
#import <LegacyComponents/TGMediaSelectionContext.h>
|
|
|
|
@class PGCameraShotMetadata;
|
|
|
|
@interface TGCameraCapturedPhoto : NSObject <TGMediaEditableItem, TGMediaSelectableItem>
|
|
|
|
@property (nonatomic, readonly) NSURL *url;
|
|
@property (nonatomic, readonly) PGCameraShotMetadata *metadata;
|
|
|
|
- (instancetype)initWithImage:(UIImage *)image metadata:(PGCameraShotMetadata *)metadata;
|
|
|
|
- (void)_cleanUp;
|
|
|
|
@end
|