using Core.Blueprint.Domain.Dtos; namespace Core.Blueprint.DAL.Service.Contracts { public interface ISampleImageService { IAsyncEnumerable GetAllUrl(); Task GetFirstUrl(); Task GetUploadUrl(); } }