mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Allow Payjoin for wallet receive addresses * wip * show bip21 and additional work * style better * add to docs * pr changes * remove from state when unreserved
15 lines
358 B
C#
15 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; }
|
|
}
|
|
}
|