Files
btcpayserver/BTCPayServer/Models/ConfirmModel.cs

30 lines
624 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 string Action
{
get; set;
}
public string ButtonClass { get; set; } = "btn-danger";
public string ActionUrl { get; set; }
}
}