Files
cleanuperr/code/Infrastructure/Verticals/Notifications/INotificationPublisher.cs
T
2025-02-23 17:50:08 +02:00

12 lines
377 B
C#

using Domain.Enums;
namespace Infrastructure.Verticals.Notifications;
public interface INotificationPublisher
{
Task NotifyStrike(StrikeType strikeType, int strikeCount);
Task NotifyQueueItemDeleted(bool removeFromClient, DeleteReason reason);
Task NotifyDownloadCleaned(double ratio, TimeSpan seedingTime, string categoryName, CleanReason reason);
}