namespace LiteCharms.Abstractions; public interface IJobOrchestrator { Task SendAsync(TNotification notification, CancellationToken cancellationToken = default) where TNotification : IEvent; Task ScheduleAsync(TNotification notification, string cronExpression, CancellationToken cancellationToken = default) where TNotification : IEvent; }