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