using System.Collections.Generic; namespace Semmle.Extraction.CSharp.DependencyFetching { public interface ISourceGenerator { /// /// Returns the paths to the generated source files. /// IEnumerable Generate(); } }