7 lines
248 B
C#
7 lines
248 B
C#
namespace JSMR.Worker.Services;
|
|
|
|
public interface ICheckpointStore
|
|
{
|
|
Task<int?> GetLastPageAsync(string locale, CancellationToken cancellationToken);
|
|
Task SaveLastPageAsync(string locale, int page, CancellationToken cancellationToken);
|
|
} |