10 lines
286 B
C#
10 lines
286 B
C#
namespace Infrastructure.Verticals.Notifications;
|
|
|
|
public interface INotificationFactory
|
|
{
|
|
List<INotificationProvider> OnFailedImportStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnStalledStrikeEnabled();
|
|
|
|
List<INotificationProvider> OnQueueItemDeleteEnabled();
|
|
} |