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

# IInlineContent

```csharp
namespace PRTelegramBot.Interfaces
{
    /// <summary>
    /// Общий интерфейс для Inline кнопок.
    /// </summary>
    public interface IInlineContent
    {
        /// <summary>
        /// Получает название кнопки.
        /// </summary>
        /// <returns>Название кнопки.</returns>
        public string GetTextButton();

        /// <summary>
        /// Получает контент.
        /// </summary>
        /// <returns>Контент кнопки.</returns>
        public object GetContent();
    }
}
```
