mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
12 lines
372 B
Objective-C
12 lines
372 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface MTNewSessionCreatedMessage : NSObject
|
|
|
|
@property (nonatomic, readonly) int64_t firstMessageId;
|
|
@property (nonatomic, readonly) int64_t uniqueId;
|
|
@property (nonatomic, readonly) int64_t serverSalt;
|
|
|
|
- (instancetype)initWithFirstMessageId:(int64_t)firstMessageId uniqueId:(int64_t)uniqueId serverSalt:(int64_t)serverSalt;
|
|
|
|
@end
|