mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-06 12:43:58 +00:00
11 lines
328 B
Objective-C
11 lines
328 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface MTDatacenterVerificationData : NSObject
|
|
|
|
@property (nonatomic, readonly) NSInteger datacenterId;
|
|
@property (nonatomic, readonly) bool isTestingEnvironment;
|
|
|
|
- (instancetype _Nonnull)initWithDatacenterId:(NSInteger)datacenterId isTestingEnvironment:(bool)isTestingEnvironment;
|
|
|
|
@end
|