namespace JSMR.Worker.Services; public interface ICheckpointStore { Task GetLastPageAsync(string locale, CancellationToken cancellationToken); Task SaveLastPageAsync(string locale, int page, CancellationToken cancellationToken); }