mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
322 B
Objective-C
21 lines
322 B
Objective-C
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TGMediaAttachment : NSObject
|
|
|
|
@property (nonatomic) int type;
|
|
@property (nonatomic) bool isMeta;
|
|
|
|
- (void)serialize:(NSMutableData *)data;
|
|
|
|
@end
|
|
|
|
@protocol TGMediaAttachmentParser <NSObject>
|
|
|
|
@required
|
|
|
|
- (TGMediaAttachment *)parseMediaAttachment:(NSInputStream *)is;
|
|
|
|
@end
|