mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
13 lines
369 B
C#
13 lines
369 B
C#
|
namespace BTCPayServer.Models.StoreViewModels
|
||
|
{
|
||
|
public class StoreDerivationScheme
|
||
|
{
|
||
|
public string Crypto { 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; }
|
||
|
}
|
||
|
}
|