btcpayserver/BTCPayServer/HostedServices/Webhooks/IWebhookProvider.cs

13 lines
320 B
C#
Raw Normal View History

#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);
}