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