mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
17 lines
389 B
Objective-C
17 lines
389 B
Objective-C
#import <MtProtoKit/MTExportedAuthorizationData.h>
|
|
|
|
@implementation MTExportedAuthorizationData
|
|
|
|
- (instancetype)initWithAuthorizationBytes:(NSData *)authorizationBytes authorizationId:(int64_t)authorizationId
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_authorizationBytes = authorizationBytes;
|
|
_authorizationId = authorizationId;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|