> For the complete documentation index, see [llms.txt](https://prethink.gitbook.io/prtelegrambot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prethink.gitbook.io/prtelegrambot/ru/api/perechisleniya-enum/commandtype.md).

# CommandType

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