btcpayserver/BTCPayServer.Client/Models/CreatePayoutRequest.cs

14 lines
352 B
C#
Raw Normal View History

2020-06-24 10:34:09 +09:00
using BTCPayServer.JsonConverters;
using Newtonsoft.Json;
namespace BTCPayServer.Client.Models
{
public class CreatePayoutRequest
{
public string Destination { get; set; }
[JsonConverter(typeof(NumericStringJsonConverter))]
2020-06-24 10:34:09 +09:00
public decimal? Amount { get; set; }
public string PaymentMethod { get; set; }
}
}