Update display text on the view model.

This commit is contained in:
Lucas Cullen 2020-01-24 17:29:52 +10:00 committed by rockstardev
parent 666682677c
commit 56d8c033d7

View file

@ -15,6 +15,7 @@ namespace BTCPayServer.Models.InvoicingModels
{
Currency = "USD";
}
[Required]
public decimal? Amount
{
@ -28,11 +29,13 @@ namespace BTCPayServer.Models.InvoicingModels
}
[Required]
[DisplayName("Store Id")]
public string StoreId
{
get; set;
}
[DisplayName("Order Id")]
public string OrderId
{
get; set;
@ -51,6 +54,7 @@ namespace BTCPayServer.Models.InvoicingModels
}
[EmailAddress]
[DisplayName("Buyer Email")]
public string BuyerEmail
{
get; set;
@ -72,22 +76,19 @@ namespace BTCPayServer.Models.InvoicingModels
public SelectList Stores
{
get;
set;
get; set;
}
[DisplayName("Supported Transaction Currencies")]
public List<string> SupportedTransactionCurrencies
{
get;
set;
get; set;
}
[DisplayName("Available Payment Methods")]
public SelectList AvailablePaymentMethods
{
get;
set;
get; set;
}
}
}