mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
12 lines
423 B
C
12 lines
423 B
C
|
#import "TGSharedMediaItem.h"
|
||
|
|
||
|
@class TGImageMediaAttachment;
|
||
|
|
||
|
@interface TGSharedMediaImageItem : NSObject <TGSharedMediaItem>
|
||
|
|
||
|
@property (nonatomic, strong, readonly) TGImageMediaAttachment *imageMediaAttachment;
|
||
|
|
||
|
- (instancetype)initWithMessage:(TGMessage *)message messageId:(int32_t)messageId date:(NSTimeInterval)date incoming:(bool)incoming imageMediaAttachment:(TGImageMediaAttachment *)imageMediaAttachment;
|
||
|
|
||
|
@end
|