mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-24 13:49:45 -05:00
16 lines
473 B
C#
16 lines
473 B
C#
namespace Infrastructure.Verticals.Notifications;
|
|
|
|
public interface INotificationFactory
|
|
{
|
|
List<INotificationProvider> OnFailedImportStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnStalledStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnSlowStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnQueueItemDeletedEnabled();
|
|
|
|
List<INotificationProvider> OnDownloadCleanedEnabled();
|
|
|
|
List<INotificationProvider> OnCategoryChangedEnabled();
|
|
} |