Can change crypto on checkout page

This commit is contained in:
nicolas.dorier
2018-01-09 23:55:08 +09:00
parent 44898b5e23
commit 6d10c8a6c1
3 changed files with 25 additions and 3 deletions

View File

@@ -7,6 +7,13 @@ namespace BTCPayServer.Models.InvoicingModels
{
public class PaymentModel
{
public class AvailableCrypto
{
public string CryptoCode { get; set; }
public string CryptoImage { get; set; }
public string Link { get; set; }
}
public List<AvailableCrypto> AvailableCryptos { get; set; } = new List<AvailableCrypto>();
public string CryptoCode { get; set; }
public string ServerUrl { get; set; }
public string InvoiceId { get; set; }