mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
14 lines
342 B
C#
14 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; }
|
|
}
|