mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
16 lines
376 B
Objective-C
16 lines
376 B
Objective-C
#import "TGQueuedDeleteChannelMessages.h"
|
|
|
|
@implementation TGQueuedDeleteChannelMessages
|
|
|
|
- (instancetype)initWithPeerId:(int64_t)peerId accessHash:(int64_t)accessHash messageIds:(NSArray *)messageIds {
|
|
self = [super init];
|
|
if (self != nil) {
|
|
_peerId = peerId;
|
|
_accessHash = accessHash;
|
|
_messageIds = messageIds;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|