using StellaOps.Notify.Queue; using System.Threading; using System.Threading.Tasks; namespace StellaOps.Notify.Worker.Handlers; public interface INotifyEventHandler { Task HandleAsync(NotifyQueueEventMessage message, CancellationToken cancellationToken); }