mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
17 lines
494 B
C#
17 lines
494 B
C#
|
using BTCPayServer.JsonConverters;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Data
|
||
|
{
|
||
|
public class PayoutBlob
|
||
|
{
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal Amount { get; set; }
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal? CryptoAmount { get; set; }
|
||
|
public int MinimumConfirmation { get; set; } = 1;
|
||
|
public string Destination { get; set; }
|
||
|
public int Revision { get; set; }
|
||
|
}
|
||
|
}
|