using System.Collections.Generic; namespace ConsoleInterface { /// /// An to interface enabling implementation of file browsers. /// public interface IFileBrowser { /// /// Returns all filenames from given path. /// /// The path. /// An enumerable containing all file names. IEnumerable GetFilenamesFromPath(string directoryPath); } }