mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-24 13:49:45 -05:00
19 lines
557 B
C#
19 lines
557 B
C#
using Common.Configuration.Notification;
|
|
using Infrastructure.Verticals.Notifications.Models;
|
|
|
|
namespace Infrastructure.Verticals.Notifications;
|
|
|
|
public interface INotificationProvider
|
|
{
|
|
NotificationConfig Config { get; }
|
|
|
|
string Name { get; }
|
|
|
|
Task OnFailedImportStrike(FailedImportStrikeNotification notification);
|
|
|
|
Task OnStalledStrike(StalledStrikeNotification notification);
|
|
|
|
Task OnQueueItemDeleted(QueueItemDeletedNotification notification);
|
|
|
|
Task OnDownloadCleaned(DownloadCleanedNotification notification);
|
|
} |