mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-10 05:19:22 +00:00
17 lines
433 B
Objective-C
17 lines
433 B
Objective-C
#if TARGET_OS_WATCH
|
|
#import <WatchCommonWatch/TGBridgeMediaAttachment.h>
|
|
#else
|
|
#import <WatchCommon/TGBridgeMediaAttachment.h>
|
|
#endif
|
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
@interface TGBridgeVideoMediaAttachment : TGBridgeMediaAttachment
|
|
|
|
@property (nonatomic, assign) int64_t videoId;
|
|
@property (nonatomic, assign) int32_t duration;
|
|
@property (nonatomic, assign) CGSize dimensions;
|
|
@property (nonatomic, assign) bool round;
|
|
|
|
@end
|