1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Watch/Bridge/TGBridgeForwardedMessageMediaAttachment.m
2015-10-01 19:19:52 +03:00

36 lines
1.1 KiB
Objective-C

#import "TGBridgeForwardedMessageMediaAttachment.h"
const NSInteger TGBridgeForwardedMessageMediaAttachmentType = 0xAA1050C1;
NSString *const TGBridgeForwardedMessageMediaUidKey = @"uid";
NSString *const TGBridgeForwardedMessageMediaMidKey = @"mid";
NSString *const TGBridgeForwardedMessageMediaDateKey = @"date";
@implementation TGBridgeForwardedMessageMediaAttachment
- (nullable instancetype)initWithCoder:(nonnull NSCoder *)aDecoder
{
self = [super init];
if (self != nil)
{
_uid = [aDecoder decodeInt32ForKey:TGBridgeForwardedMessageMediaUidKey];
_mid = [aDecoder decodeInt32ForKey:TGBridgeForwardedMessageMediaMidKey];
_date = [aDecoder decodeInt32ForKey:TGBridgeForwardedMessageMediaDateKey];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeInt32:self.uid forKey:TGBridgeForwardedMessageMediaUidKey];
[aCoder encodeInt32:self.mid forKey:TGBridgeForwardedMessageMediaMidKey];
[aCoder encodeInt32:self.date forKey:TGBridgeForwardedMessageMediaDateKey];
}
+ (NSInteger)mediaType
{
return TGBridgeForwardedMessageMediaAttachmentType;
}
@end