namespace Sdt.Config; public sealed class WorkspaceConfig { public string Name { get; init; } = "SDT Workspace"; public List Projects { get; init; } = []; } public sealed class WorkspaceProject { public string Name { get; init; } = ""; public string Description { get; init; } = ""; /// /// Relative or absolute path to the project root /// (the directory containing devtool.json). /// public string Path { get; init; } = ""; public List Tags { get; init; } = []; public List ToolFamilies { get; init; } = []; public bool Disabled { get; init; } = false; }