using System; namespace SolutionCleanupTool.Models { /// /// Represents a project reference within a solution /// public class ProjectReference { public string Name { get; set; } = string.Empty; public string RelativePath { get; set; } = string.Empty; public string AbsolutePath { get; set; } = string.Empty; public Guid ProjectGuid { get; set; } public string ProjectTypeGuid { get; set; } = string.Empty; public bool Exists { get; set; } } }