Create eSettings.cs
- adding eSettings enumeration
This commit is contained in:
parent
992065d289
commit
eebb5cb6f5
31
TelegramBotBase/Enums/eSettings.cs
Normal file
31
TelegramBotBase/Enums/eSettings.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace TelegramBotBase.Enums
|
||||
{
|
||||
public enum eSettings
|
||||
{
|
||||
/// <summary>
|
||||
/// How often could a form navigate to another (within one user action/call/message)
|
||||
/// </summary>
|
||||
NavigationMaximum = 1,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Loggs all messages and sent them to the event handler
|
||||
/// </summary>
|
||||
LogAllMessages = 2,
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Skips all messages during running (good for big delay updates)
|
||||
/// </summary>
|
||||
SkipAllMessages = 3,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user