mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
405 B
Objective-C
16 lines
405 B
Objective-C
#import "TGBridgeMediaAttachment.h"
|
|
#import "TGBridgeImageInfo.h"
|
|
|
|
@interface TGBridgeVideoMediaAttachment : TGBridgeMediaAttachment
|
|
|
|
@property (nonatomic, assign) int64_t videoId;
|
|
|
|
@property (nonatomic, strong) TGBridgeImageInfo *thumbnailImageInfo;
|
|
|
|
@property (nonatomic, assign) int32_t duration;
|
|
@property (nonatomic, assign) CGSize dimensions;
|
|
|
|
@property (nonatomic, strong) NSString *caption;
|
|
|
|
@end
|