using System.Collections.Generic; using API.DTOs; namespace API.Interfaces { public interface IDirectoryService { IEnumerable ListDirectory(string rootPath); void ScanLibrary(LibraryDto library); } }