mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 09:29:55 +01:00
26 lines
446 B
Objective-C
26 lines
446 B
Objective-C
#import "TGClearNotificationsFutureAction.h"
|
|
|
|
@implementation TGClearNotificationsFutureAction
|
|
|
|
- (id)init
|
|
{
|
|
self = [super initWithType:TGClearNotificationsFutureActionType];
|
|
if (self != nil)
|
|
{
|
|
self.uniqueId = 0;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSData *)serialize
|
|
{
|
|
return [[NSData alloc] init];
|
|
}
|
|
|
|
- (TGFutureAction *)deserialize:(NSData *)__unused data
|
|
{
|
|
return [[TGClearNotificationsFutureAction alloc] init];
|
|
}
|
|
|
|
@end
|