mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
14 lines
409 B
Objective-C
14 lines
409 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "PSCoding.h"
|
|
|
|
@interface TGDocumentAttributeAudio : NSObject <NSCoding, PSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSString *title;
|
|
@property (nonatomic, strong, readonly) NSString *performer;
|
|
@property (nonatomic, readonly) int32_t duration;
|
|
|
|
- (instancetype)initWithTitle:(NSString *)title performer:(NSString *)performer duration:(int32_t)duration;
|
|
|
|
@end
|