20 lines
532 B
C#
20 lines
532 B
C#
namespace Sdt.Config;
|
|
|
|
public sealed class WorkspaceConfig
|
|
{
|
|
public string Name { get; init; } = "SDT Workspace";
|
|
public List<WorkspaceProject> Projects { get; init; } = [];
|
|
}
|
|
|
|
public sealed class WorkspaceProject
|
|
{
|
|
public string Name { get; init; } = "";
|
|
public string Description { get; init; } = "";
|
|
|
|
/// <summary>
|
|
/// Relative path from the sdt-workspace.json directory to the project root
|
|
/// (the directory containing devtool.json).
|
|
/// </summary>
|
|
public string Path { get; init; } = "";
|
|
}
|