Files
Cleanuparr/code/Infrastructure/Verticals/Notifications/INotificationFactory.cs
2025-02-16 03:20:00 +02:00

12 lines
348 B
C#

namespace Infrastructure.Verticals.Notifications;
public interface INotificationFactory
{
List<INotificationProvider> OnFailedImportStrikeEnabled();
List<INotificationProvider> OnStalledStrikeEnabled();
List<INotificationProvider> OnQueueItemDeletedEnabled();
List<INotificationProvider> OnDownloadCleanedEnabled();
}