2022-10-08 19:15:51 +03:00

22 lines
484 B
C#

using TelegramBotBase.Attributes;
namespace TelegramBotBase.Form
{
/// <summary>
/// A simple prompt dialog with one ok Button
/// </summary>
[IgnoreState]
public class AlertDialog : ConfirmDialog
{
public string ButtonText { get; set; }
public AlertDialog(string message, string buttonText) : base(message)
{
Buttons.Add(new ButtonBase(buttonText, "ok"));
this.ButtonText = buttonText;
}
}
}