namespace BotPages.Core.Messaging; /// /// Кнопки снизу чата /// public class ReplyButton { /// /// Подпись на кнопке /// public string Label { get; private set; } /// public ReplyButton(string label) { this.Label = label; } /// public ReplyButton(Enum value) { this.Label = value.GetButtonLabel(); } /// /// Преобразование строки к кнопке. /// /// public static implicit operator ReplyButton(string str) => new ReplyButton(str); /// /// Преобразование enum к кнопке. /// /// public static implicit operator ReplyButton(Enum en) => new ReplyButton(en); }