mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
20 lines
566 B
Objective-C
20 lines
566 B
Objective-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
|