using System;
using System.Collections.Generic;
using System.Text;
namespace TelegramBotBase.Enums
{
public enum eSettings
{
///
/// How often could a form navigate to another (within one user action/call/message)
///
NavigationMaximum = 1,
///
/// Loggs all messages and sent them to the event handler
///
LogAllMessages = 2,
///
/// Skips all messages during running (good for big delay updates)
///
SkipAllMessages = 3,
///
/// Does stick to the console event handler and saves all sessions on exit.
///
SaveSessionsOnConsoleExit = 4,
///
/// Indicates the maximum number of times a request that received error
/// 429 will be sent again after a timeout until it receives code 200 or an error code not equal to 429.
///
MaxNumberOfRetries = 5,
}
}