mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
30 lines
515 B
Objective-C
30 lines
515 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 MTRequestPendingRecaptchaVerificationData
|
|
|
|
- (instancetype)initWithSiteKey:(NSString *)siteKey {
|
|
self = [super init];
|
|
if (self != nil) {
|
|
_siteKey = siteKey;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation MTRequestErrorContext
|
|
|
|
@end
|