Displaying payment method name during checkout

Ref: https://github.com/btcpayserver/btcpayserver/issues/152
This commit is contained in:
rockstardev
2018-07-13 15:58:59 -05:00
parent 97e564901e
commit 33d18a3278
21 changed files with 3877 additions and 13 deletions

View File

@@ -12,6 +12,7 @@ namespace BTCPayServer.Models.InvoicingModels
public string PaymentMethodId { get; set; }
public string CryptoImage { get; set; }
public string Link { get; set; }
public string PaymentMethodName { get; set; }
}
public string HtmlTitle { get; set; }
public string CustomCSSLink { get; set; }
@@ -45,12 +46,13 @@ namespace BTCPayServer.Models.InvoicingModels
public string StoreEmail { get; set; }
public string OrderId { get; set; }
public string CryptoImage { get; set; }
public decimal NetworkFee { get; set; }
public bool IsMultiCurrency { get; set; }
public int MaxTimeMinutes { get; internal set; }
public string PaymentType { get; internal set; }
public string PaymentMethodId { get; internal set; }
public int MaxTimeMinutes { get; set; }
public string PaymentType { get; set; }
public string PaymentMethodId { get; set; }
public string PaymentMethodName { get; set; }
public string CryptoImage { get; set; }
public bool AllowCoinConversion { get; set; }
public string PeerInfo { get; set; }