mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-26 23:48:30 -05:00
18 lines
530 B
C#
18 lines
530 B
C#
using Infrastructure.Verticals.Notifications;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.Notifications;
|
|
|
|
public interface INotificationFactory
|
|
{
|
|
List<INotificationProvider> OnFailedImportStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnStalledStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnSlowStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnQueueItemDeletedEnabled();
|
|
|
|
List<INotificationProvider> OnDownloadCleanedEnabled();
|
|
|
|
List<INotificationProvider> OnCategoryChangedEnabled();
|
|
} |