mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
15 lines
342 B
C#
15 lines
342 B
C#
#nullable enable
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class MarkPayoutRequest
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public PayoutState State { get; set; } = PayoutState.Completed;
|
|
|
|
public JObject? PaymentProof { get; set; }
|
|
}
|