Files
btcpayserver/BTCPayServer/Models/AppViewModels/PayButtonViewModel.cs
2018-08-17 13:21:00 +02:00

26 lines
747 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.AppViewModels
{
public class PayButtonViewModel
{
public decimal Price { get; set; }
[Required]
public string Currency { get; set; }
public string CheckoutDesc { get; set; }
public string OrderId { get; set; }
public int ButtonSize { get; set; }
public string ServerIpn { get; set; }
public string BrowserRedirect { get; set; }
public string NotifyEmail { get; set; }
//
public string UrlRoot { get; set; }
public List<string> CurrencyDropdown { get; set; }
}
}