using Codelyzer.Analysis.Model; using System; using System.Collections.Generic; using System.Text; namespace Codelyzer.Analysis.Build { public class IDEProjectResult { public IDEProjectResult() { SourceFileBuildResults = new List(); RootNodes = new List(); } public string ProjectPath { get; set; } public List SourceFileBuildResults { get; set; } public List RootNodes { get; set; } } }