mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Add ability to set default payment method for pay button close #3604 * Add "#nullable enable" to UIStoresController * Add PaymentMethodOptionViewModel * Add explicit "Use the store’s default" option
14 lines
336 B
C#
14 lines
336 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class PaymentMethodOptionViewModel
|
|
{
|
|
public class Format
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public PaymentMethodId PaymentId { get; set; }
|
|
}
|
|
}
|
|
}
|