using ScrapperAPI.Dtos; namespace ScrapperAPI.Interfaces; public interface IExtractedDataRepository { Task UpsertAsync(UpsertExtractedDataDto dto, CancellationToken ct); Task> ListBySessionAsync(int sessionId, long modelId, CancellationToken ct); Task GetByQueueIdAsync(int queueId, long modelId, CancellationToken ct); }