mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-21 13:04:42 +00:00
14 lines
410 B
Objective-C
14 lines
410 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) PGCameraShotMetadata *metadata;
|
|
|
|
- (instancetype)initWithImage:(UIImage *)image metadata:(PGCameraShotMetadata *)metadata;
|
|
|
|
@end
|