using System.Collections.Generic; namespace Flow.Launcher.Plugin.Explorer.Search { public interface IPathEnumerable { public IEnumerable Enumerate(string path, bool recursive); } }