mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
20 lines
566 B
C
20 lines
566 B
C
|
#import "TGModernGalleryVideoItem.h"
|
||
|
|
||
|
#import "TGGenericPeerGalleryItem.h"
|
||
|
|
||
|
@class TGUser;
|
||
|
|
||
|
@interface TGGenericPeerMediaGalleryVideoItem : TGModernGalleryVideoItem <TGGenericPeerGalleryItem>
|
||
|
|
||
|
@property (nonatomic, strong) id authorPeer;
|
||
|
@property (nonatomic) NSTimeInterval date;
|
||
|
@property (nonatomic) int32_t messageId;
|
||
|
@property (nonatomic) int64_t peerId;
|
||
|
@property (nonatomic, strong) NSString *caption;
|
||
|
|
||
|
- (instancetype)initWithVideoMedia:(TGVideoMediaAttachment *)videoMedia peerId:(int64_t)peerId messageId:(int32_t)messageId;
|
||
|
|
||
|
- (NSString *)filePath;
|
||
|
|
||
|
@end
|