14 lines
413 B
C#
14 lines
413 B
C#
namespace Infrastructure.Verticals.Notifications;
|
|
|
|
public interface INotificationFactory
|
|
{
|
|
List<INotificationProvider> OnFailedImportStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnStalledStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnQueueItemDeletedEnabled();
|
|
|
|
List<INotificationProvider> OnDownloadCleanedEnabled();
|
|
|
|
List<INotificationProvider> OnCategoryChangedEnabled();
|
|
} |