Files
btcpayserver/BTCPayServer/HostedServices/Webhooks/IWebhookProvider.cs
2025-06-01 23:41:42 -05:00

13 lines
316 B
C#

#nullable enable
using System.Collections.Generic;
using BTCPayServer.Client.Models;
namespace BTCPayServer.HostedServices.Webhooks;
public interface IWebhookProvider
{
public Dictionary<string, string> GetSupportedWebhookTypes();
public WebhookEvent CreateTestEvent(string type, params object[] args);
}