namespace SPMS.Application.Interfaces; public interface IScheduleCancelStore { Task MarkCancelledAsync(string scheduleId, CancellationToken cancellationToken = default); Task IsCancelledAsync(string scheduleId, CancellationToken cancellationToken = default); }