mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
25 lines
520 B
C#
25 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()
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|