Files
DotNetSolutionTools/DotNetSolutionTools.Core/Models/Project.cs
Matthew Parker [SSW] 5277a7eb70 Add Photino project
2024-11-21 20:48:11 +10:00

9 lines
223 B
C#

namespace DotNetSolutionTools.Core.Models;
public class Project
{
public required string FullPath { get; set; }
public required string Name { get; set; }
public List<Project> DependsOn { get; set; } = [];
}