csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | using System.Text.Json.Serialization; |
| 4 | |
| 5 | namespace CascadeIDE.Features.Workspace; |
| 6 | |
| 7 | /// <summary>CASA agent field store paths (<c>[workspace.casa_field]</c>, IDE bridge v1).</summary> |
| 8 | public sealed class RepositoryCasaFieldToml |
| 9 | { |
| 10 | /// <summary>Repo-relative or absolute path to agent store (contains field_state.json).</summary> |
| 11 | public string? StoreDir { get; set; } |
| 12 | |
| 13 | /// <summary>Repo-relative path to casa-ontology-payload root (optional).</summary> |
| 14 | public string? PayloadRepo { get; set; } |
| 15 | } |
| 16 | |
View only · write via MCP/CIDE