using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TelegramBotBase.Enums { public enum eDeleteMode { /// /// Don't delete any message. /// None = 0, /// /// Delete messages on every callback/action. /// OnEveryCall = 1, /// /// Delete on leaving this form. /// OnLeavingForm = 2 } public enum eSide { /// /// Delete only messages from this bot. /// BotOnly = 0, /// /// Delete only user messages. /// UserOnly = 1, /// /// Delete all messages in this context. /// Both = 2 } public enum eMonthPickerMode { /// /// Shows the calendar with day picker mode /// day = 0, /// /// Shows the calendar with month overview /// month = 1, /// /// Shows the calendar with year overview /// year = 2 } }