using Cleanuparr.Domain.Enums; using Cleanuparr.Infrastructure.Features.Notifications.Models; namespace Cleanuparr.Infrastructure.Features.Notifications; public interface INotificationConfigurationService { Task> GetActiveProvidersAsync(); Task> GetProvidersForEventAsync(NotificationEventType eventType); Task GetProviderByIdAsync(Guid id); Task InvalidateCacheAsync(); }