btcpayserver/BTCPayServer/Models/StoreViewModels/StoreDerivationScheme.cs
Andrew Camilleri 373b90e3b5
Liquid fixes (#6340)
make sure link provider is per payment method of liquid assets. Also remove ETB as it has been unused. Also hide the send button as it is not supported thrrough BTCPay
2024-10-29 23:43:37 +09:00

17 lines
509 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 ReadonlyWallet { get; set; }
public bool Enabled { get; set; }
public bool Collapsed { get; set; }
}
}