using ScrapperAPI.Dtos; using ScrapperAPI.Records; namespace ScrapperAPI.Interfaces; public interface IContentRepository { Task SaveAsync(int queueId, string content, CancellationToken ct); Task GetByQueueIdAsync(int queueId, CancellationToken ct); Task GetCompressedByQueueIdAsync(int queueId, CancellationToken ct); }