2024-04-04 16:31:04 +09:00
|
|
|
using BTCPayServer.Payments;
|
|
|
|
|
2021-10-25 08:18:02 +02:00
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
|
|
{
|
|
|
|
public class StoreDerivationScheme
|
|
|
|
{
|
|
|
|
public string Crypto { get; set; }
|
2024-04-04 16:31:04 +09:00
|
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
2021-10-25 08:18:02 +02:00
|
|
|
public string Value { get; set; }
|
|
|
|
public WalletId WalletId { get; set; }
|
|
|
|
public bool WalletSupported { get; set; }
|
2024-10-29 15:43:37 +01:00
|
|
|
public bool ReadonlyWallet { get; set; }
|
2021-10-25 08:18:02 +02:00
|
|
|
public bool Enabled { get; set; }
|
|
|
|
public bool Collapsed { get; set; }
|
|
|
|
}
|
|
|
|
}
|