mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 09:58:53 -05:00
16 lines
492 B
C#
16 lines
492 B
C#
using Cleanuparr.Domain.Enums;
|
|
using Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.Notifications;
|
|
|
|
public interface INotificationConfigurationService
|
|
{
|
|
Task<List<NotificationProviderDto>> GetActiveProvidersAsync();
|
|
|
|
Task<List<NotificationProviderDto>> GetProvidersForEventAsync(NotificationEventType eventType);
|
|
|
|
Task<NotificationProviderDto?> GetProviderByIdAsync(Guid id);
|
|
|
|
Task InvalidateCacheAsync();
|
|
}
|