namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IWebhookSubscriptionService { /// /// Create new webhook subscription /// Task CreateWebhookSubscription(WebhookSubscriptionCreateDto dto); /// /// Get subscriptions by webhook name /// Task> GetAllSubscriptionsAsync(string webhookName); } }