btcpayserver/BTCPayServer/Models/ConfirmModel.cs
2020-07-13 10:58:53 +02:00

33 lines
685 B
C#

namespace BTCPayServer.Models
{
public class ConfirmModel
{
public ConfirmModel() { }
public ConfirmModel(string title, string desc, string action = null)
{
Title = title;
Description = desc;
Action = action;
}
public string Title
{
get; set;
}
public string Description
{
get; set;
}
public bool DescriptionHtml { get; set; } = false;
public string Action
{
get; set;
}
public string ButtonClass { get; set; } = "btn-danger";
public string ActionUrl { get; set; }
}
}