mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
15 lines
336 B
C#
15 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; }
|
||
|
}
|
||
|
}
|
||
|
}
|