mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
16 lines
460 B
C#
16 lines
460 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class StoreDerivationScheme
|
|
{
|
|
public string Crypto { get; set; }
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
|
public string Value { get; set; }
|
|
public WalletId WalletId { get; set; }
|
|
public bool WalletSupported { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public bool Collapsed { get; set; }
|
|
}
|
|
}
|