mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
15 lines
364 B
C#
15 lines
364 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
|
|
namespace BTCPayServer.HostedServices.Webhooks;
|
|
|
|
public interface IWebhookProvider
|
|
{
|
|
public bool SupportsCustomerEmail { get; }
|
|
|
|
public Dictionary<string, string> GetSupportedWebhookTypes();
|
|
|
|
public WebhookEvent CreateTestEvent(string type, params object[] args);
|
|
}
|