17 lines
484 B
C#
17 lines
484 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 OnQueueItemDelete(QueueItemDeleteNotification notification);
|
|
} |