1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Watch/Bridge/TGBridgeVideoMediaAttachment.h
2015-10-01 19:19:52 +03:00

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