mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
34 lines
1 KiB
C#
34 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.JsonConverters;
|
|
using NBitcoin;
|
|
using NBitcoin.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class OnChainWalletTransactionData
|
|
{
|
|
[JsonConverter(typeof(UInt256JsonConverter))]
|
|
public uint256 TransactionHash { get; set; }
|
|
|
|
public string Comment { get; set; }
|
|
public Dictionary<string, LabelData> Labels { get; set; } = new Dictionary<string, LabelData>();
|
|
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal Amount { get; set; }
|
|
|
|
[JsonConverter(typeof(UInt256JsonConverter))]
|
|
public uint256 BlockHash { get; set; }
|
|
|
|
public long? BlockHeight { get; set; }
|
|
|
|
public long Confirmations { get; set; }
|
|
|
|
[JsonConverter(typeof(DateTimeToUnixTimeConverter))]
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
|
|
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
public TransactionStatus Status { get; set; }
|
|
}
|
|
}
|