mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-22 20:18:44 +00:00
18 lines
396 B
Objective-C
18 lines
396 B
Objective-C
#import "MTNewSessionCreatedMessage.h"
|
|
|
|
@implementation MTNewSessionCreatedMessage
|
|
|
|
- (instancetype)initWithFirstMessageId:(int64_t)firstMessageId uniqueId:(int64_t)uniqueId serverSalt:(int64_t)serverSalt
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_firstMessageId = firstMessageId;
|
|
_uniqueId = uniqueId;
|
|
_serverSalt = serverSalt;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|