CommandType

namespace PRTelegramBot.Models.Enums
{
    /// <summary>
    /// Типы команд.
    /// </summary>
    public enum CommandType
    {
        None = 0,
        Reply,
        DynamicReply,
        Slash,
        NextStep,
        Inline
    }
}

Last updated