mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
33 lines
981 B
C#
33 lines
981 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Models
|
|
{
|
|
public class ConfirmModel
|
|
{
|
|
private const string ButtonClassDefault = "btn-danger";
|
|
|
|
public ConfirmModel() { }
|
|
|
|
public ConfirmModel(string title, string desc, string action = null, string buttonClass = ButtonClassDefault, string actionUrl = null)
|
|
{
|
|
Title = title;
|
|
Description = desc;
|
|
Action = action;
|
|
ButtonClass = buttonClass;
|
|
|
|
if (Description.Contains("<strong>", StringComparison.InvariantCultureIgnoreCase))
|
|
{
|
|
DescriptionHtml = true;
|
|
}
|
|
|
|
ActionUrl = actionUrl;
|
|
}
|
|
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public bool DescriptionHtml { get; set; }
|
|
public string Action { get; set; }
|
|
public string ButtonClass { get; set; } = ButtonClassDefault;
|
|
public string ActionUrl { get; set; }
|
|
}
|
|
}
|