mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 09:58:13 +01:00
16 lines
422 B
C#
16 lines
422 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; }
|
|
}
|
|
}
|