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 safes all sessions on exit.
///
SafeSessionsOnConsoleExit = 4
}
}