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