btcpayserver/BTCPayServer/Models/ConfirmModel.cs

34 lines
679 B
C#
Raw Normal View History

2017-10-23 15:55:46 +02:00
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;
}
2018-05-03 18:46:52 +02:00
public string ButtonClass { get; set; } = "btn-danger";
}
2017-10-23 15:55:46 +02:00
}