mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
16 lines
376 B
Mathematica
16 lines
376 B
Mathematica
|
#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
|