Add Notifiarr support (#52)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Common.Configuration.Notification;
|
||||
using Infrastructure.Verticals.Notifications.Models;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace Infrastructure.Verticals.Notifications;
|
||||
|
||||
public abstract class NotificationProvider : INotificationProvider
|
||||
{
|
||||
protected NotificationProvider(IOptions<NotificationConfig> config)
|
||||
{
|
||||
Config = config.Value;
|
||||
}
|
||||
|
||||
public abstract string Name { get; }
|
||||
|
||||
public NotificationConfig Config { get; }
|
||||
|
||||
public abstract Task OnFailedImportStrike(FailedImportStrikeNotification notification);
|
||||
|
||||
public abstract Task OnStalledStrike(StalledStrikeNotification notification);
|
||||
|
||||
public abstract Task OnQueueItemDelete(QueueItemDeleteNotification notification);
|
||||
}
|
||||
Reference in New Issue
Block a user