mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-04-22 15:10:16 -04:00
12 lines
348 B
C#
12 lines
348 B
C#
namespace Infrastructure.Verticals.Notifications;
|
|
|
|
public interface INotificationFactory
|
|
{
|
|
List<INotificationProvider> OnFailedImportStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnStalledStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnQueueItemDeletedEnabled();
|
|
|
|
List<INotificationProvider> OnDownloadCleanedEnabled();
|
|
} |