using Core.SpecConfig; namespace Core; public interface ISpecFile { public Location Location { get; } public string Name { get; } public string Folder { get; } public ISet ScopedRefs { get; set; } public SpecType SpecType { get; } public string NugetPackage { get; } public string MavenGroup { get; } public string NpmPackage { get; } public string Version { get; } public int Priority { get; } public QueueGetTasksBy(Language language, GenerationType type); }