mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
19 lines
505 B
C#
19 lines
505 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class PayoutBlob
|
|
{
|
|
public int MinimumConfirmation { get; set; } = 1;
|
|
public string Destination { get; set; }
|
|
public int Revision { get; set; }
|
|
|
|
[JsonExtensionData]
|
|
public Dictionary<string, JToken> AdditionalData { get; set; } = new();
|
|
|
|
public JObject Metadata { get; set; }
|
|
}
|
|
}
|