mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
294 B
Objective-C
18 lines
294 B
Objective-C
#import <MtProtoKit/MTRequestErrorContext.h>
|
|
|
|
@implementation MTRequestPendingVerificationData
|
|
|
|
- (instancetype)initWithNonce:(NSString *)nonce {
|
|
self = [super init];
|
|
if (self != nil) {
|
|
_nonce = nonce;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation MTRequestErrorContext
|
|
|
|
@end
|