using ScrapperAPI.Dtos; namespace ScrapperAPI.Interfaces; public interface ISessionRepository { Task CreateAsync(string name, CancellationToken ct); Task FindByNameAsync(string name, CancellationToken ct); Task GetIdByNameAsync(string name, CancellationToken ct); Task> GetAllAsync(CancellationToken ct); }