Swiftgram/submodules/WatchCommon/Sources/TGBridgeVideoMediaAttachment.h
2019-06-16 00:51:10 +01:00

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