using System.Collections.Generic;
namespace SolutionCleanupTool.Models
{
///
/// Represents a project that is referenced but missing from the file system
///
public class MissingProject
{
public ProjectReference Reference { get; set; } = new ProjectReference();
public string ExpectedPath { get; set; } = string.Empty;
public List ReferencingProjects { get; set; } = new List();
public string ErrorMessage { get; set; } = string.Empty;
}
}