btcpayserver/BTCPayServer/Models/ConfirmModel.cs
2018-05-04 01:46:52 +09:00

25 lines
458 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models
{
public class ConfirmModel
{
public string Title
{
get; set;
}
public string Description
{
get; set;
}
public string Action
{
get; set;
}
public string ButtonClass { get; set; } = "btn-danger";
}
}