mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
373b90e3b5
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
17 lines
509 B
C#
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; }
|
|
}
|
|
}
|