mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
24 lines
520 B
C#
24 lines
520 B
C#
using NBitcoin;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class OnChainPaymentMethodBaseData
|
|
{
|
|
/// <summary>
|
|
/// The derivation scheme
|
|
/// </summary>
|
|
public string DerivationScheme { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.KeyPathJsonConverter))]
|
|
public RootedKeyPath AccountKeyPath { get; set; }
|
|
|
|
public OnChainPaymentMethodBaseData()
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|