mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +01:00
Update display text on the view model.
This commit is contained in:
parent
666682677c
commit
56d8c033d7
1 changed files with 7 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue