mirror of
https://github.com/danog/Telegram.git
synced 2024-11-30 04:29:15 +01:00
14 lines
258 B
Objective-C
14 lines
258 B
Objective-C
#import "TGMediaAttachment.h"
|
|
|
|
@implementation TGMediaAttachment
|
|
|
|
@synthesize type = _type;
|
|
@synthesize isMeta = _isMeta;
|
|
|
|
- (void)serialize:(NSMutableData *)__unused data
|
|
{
|
|
TGLog(@"***** TGMediaAttachment: default implementation not provided");
|
|
}
|
|
|
|
@end
|