mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
c93497af10
* Rename PaymentMethod => PaymentMethodId * Rename DB Columns
14 lines
353 B
C#
14 lines
353 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 PayoutMethodId { get; set; }
|
|
}
|
|
}
|