Swiftgram/MTProtoKit/MTDropResponseContext.m
2018-06-13 17:11:43 +03:00

18 lines
262 B
Objective-C

#import "MTDropResponseContext.h"
@implementation MTDropResponseContext
- (instancetype)initWithDropMessageId:(int64_t)dropMessageId
{
self = [super init];
if (self != nil)
{
_dropMessageId = dropMessageId;
}
return self;
}
@end