17 lines
537 B
C#
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; }
|
|
}
|
|
} |