Files
Cleanuparr/code/Infrastructure/Verticals/Notifications/INotificationProvider.cs
Flaminel 96b9a54b64 fix #14
2025-05-17 21:03:14 +03:00

23 lines
701 B
C#

using Common.Configuration.Notification;
using Infrastructure.Verticals.Notifications.Models;
namespace Infrastructure.Verticals.Notifications;
public interface INotificationProvider
{
BaseNotificationConfig Config { get; }
string Name { get; }
Task OnFailedImportStrike(FailedImportStrikeNotification notification);
Task OnStalledStrike(StalledStrikeNotification notification);
Task OnSlowStrike(SlowStrikeNotification notification);
Task OnQueueItemDeleted(QueueItemDeletedNotification notification);
Task OnDownloadCleaned(DownloadCleanedNotification notification);
Task OnCategoryChanged(CategoryChangedNotification notification);
}