> 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/commandcomparison.md).

# CommandComparison

```csharp
namespace PRTelegramBot.Models.Enums
{
    /// <summary>
    /// Сравнение команд.
    /// </summary>
    public enum CommandComparison
    {
        /// <summary>
        /// Точное совпадение команды.
        /// </summary>
        Equals = 0,
        /// <summary>
        /// Содержит команду.
        /// </summary>
        Contains
    }
}

```
