mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
14 lines
352 B
C#
14 lines
352 B
C#
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class CreatePayoutRequest
|
|
{
|
|
public string Destination { get; set; }
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal? Amount { get; set; }
|
|
public string PaymentMethod { get; set; }
|
|
}
|
|
}
|