mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
35 lines
725 B
C#
35 lines
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|