mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-29 22:50:42 +00:00
14 lines
392 B
Objective-C
14 lines
392 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/PSCoding.h>
|
|
|
|
@interface TGDocumentAttributeVideo : NSObject <PSCoding, NSCoding>
|
|
|
|
@property (nonatomic, readonly) bool isRoundMessage;
|
|
@property (nonatomic, readonly) CGSize size;
|
|
@property (nonatomic, readonly) int32_t duration;
|
|
|
|
- (instancetype)initWithRoundMessage:(bool)isRoundMessage size:(CGSize)size duration:(int32_t)duration;
|
|
|
|
@end
|