Files
btcpayserver/BTCPayServer.Client/Models/CreatePayoutRequest.cs
2020-06-28 21:44:35 -05:00

17 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using BTCPayServer.JsonConverters;
using Newtonsoft.Json;
namespace BTCPayServer.Client.Models
{
public class CreatePayoutRequest
{
public string Destination { get; set; }
[JsonConverter(typeof(DecimalStringJsonConverter))]
public decimal? Amount { get; set; }
public string PaymentMethod { get; set; }
}
}