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

# ActionWithLastMessage

```csharp
namespace PRTelegramBot.Models.Enums
{
    /// <summary>
    /// Действие с последним сообщения для inline кнопок.
    /// </summary>
    public enum ActionWithLastMessage
    {
        /// <summary>
        /// Ничего не делать.
        /// </summary>
        Nothing = 0,
        /// <summary>
        /// Редактировать.
        /// </summary>
        Edit,
        /// <summary>
        /// Удалить.
        /// </summary>
        Delete
    }
}
```
