SOMS/SolutionCleanupTool/Models/ProjectReference.cs
2025-12-31 14:25:09 +08:00

17 lines
537 B
C#

using System;
namespace SolutionCleanupTool.Models
{
/// <summary>
/// Represents a project reference within a solution
/// </summary>
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; }
}
}