Files
cleanuperr/code/Infrastructure/Verticals/Notifications/INotificationFactory.cs
T
2025-02-16 03:17:54 +02:00

10 lines
286 B
C#

namespace Infrastructure.Verticals.Notifications;
public interface INotificationFactory
{
List<INotificationProvider> OnFailedImportStrikeEnabled();
List<INotificationProvider> OnStalledStrikeEnabled();
List<INotificationProvider> OnQueueItemDeleteEnabled();
}