mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
21 lines
590 B
C#
21 lines
590 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.JsonConverters;
|
||
|
using NBitcoin;
|
||
|
using NBitcoin.JsonConverters;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class OnChainWalletUTXOData
|
||
|
{
|
||
|
public string Comment { get; set; }
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal Amount { get; set; }
|
||
|
[JsonConverter(typeof(OutpointJsonConverter))]
|
||
|
public OutPoint Outpoint { get; set; }
|
||
|
public string Link { get; set; }
|
||
|
|
||
|
public Dictionary<string, LabelData> Labels { get; set; }
|
||
|
}
|
||
|
}
|