mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
Decouple PaymentMethodId from PayoutMethodId (#5944)
This commit is contained in:
@@ -62,9 +62,9 @@ namespace BTCPayServer.Models.WalletViewModels
|
||||
[Display(Name = "Custom CSS Code")]
|
||||
public string EmbeddedCSS { get; set; }
|
||||
|
||||
[Display(Name = "Payment Methods")]
|
||||
public IEnumerable<string> PaymentMethods { get; set; }
|
||||
public IEnumerable<SelectListItem> PaymentMethodItems { get; set; }
|
||||
[Display(Name = "Payout Methods")]
|
||||
public IEnumerable<string> PayoutMethods { get; set; }
|
||||
public IEnumerable<SelectListItem> PayoutMethodsItem { get; set; }
|
||||
[Display(Name = "Minimum acceptable expiration time for BOLT11 for refunds")]
|
||||
[Range(0, 365 * 10)]
|
||||
public long BOLT11Expiration { get; set; } = 30;
|
||||
|
||||
Reference in New Issue
Block a user