mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-05 12:13:02 +00:00
* commit '1b32f70d51c1f841b9a6dba12df3dd814440b471': Ready state Add support for arm64 no message no message Conflicts: MTProtoKit/MTRequestMessageService.m MtProtoKit.xcodeproj/project.pbxproj
20 lines
512 B
Objective-C
20 lines
512 B
Objective-C
/*
|
|
* This is the source code of Telegram for iOS v. 1.1
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Peter Iakovlev, 2013.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <MTProtoKit/MTTime.h>
|
|
|
|
@interface MTRequestErrorContext : NSObject
|
|
|
|
@property (nonatomic) MTAbsoluteTime minimalExecuteTime;
|
|
|
|
@property (nonatomic) NSUInteger internalServerErrorCount;
|
|
@property (nonatomic) NSUInteger floodWaitSeconds;
|
|
|
|
@end
|