mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-23 07:04:26 +01:00
Update display text on the view model.
This commit is contained in:
committed by
rockstardev
parent
666682677c
commit
56d8c033d7
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user