grandnode/Models/BtcPayHookModel.cs
2024-03-17 11:54:49 +01:00

23 lines
496 B
C#

namespace Payments.BTCPayServer.Models
{
public class BtcPayHookModel
{
public bool enabled = true;
public bool automaticRedelivery = true;
public string? url;
public BtcPayHookAuthorizedEvents authorizedEvents = new();
public string? secret;
}
public struct BtcPayHookAuthorizedEvents
{
public bool everything = true;
public BtcPayHookAuthorizedEvents()
{
}
}
}