mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
8fd4a816a6
* Allow Payjoin for wallet receive addresses * wip * show bip21 and additional work * style better * add to docs * pr changes * remove from state when unreserved
16 lines
358 B
C#
16 lines
358 B
C#
using NBitcoin;
|
|
using NBitcoin.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class OnChainWalletAddressData
|
|
{
|
|
public string Address { get; set; }
|
|
[JsonConverter(typeof(KeyPathJsonConverter))]
|
|
public KeyPath KeyPath { get; set; }
|
|
|
|
public string PaymentLink { get; set; }
|
|
}
|
|
}
|