csharpdeeb25a2 | 1 | using System.Text.Json.Serialization; |
| 2 | |
| 3 | namespace CascadeIDE.Models; |
| 4 | |
| 5 | /// <summary>Один пресет подписей ветвей IF (TOML: <c>[[code_navigation_map.condition_branch.presets]]</c>).</summary> |
| 6 | public sealed class CodeNavigationMapConditionBranchPresetEntry |
| 7 | { |
| 8 | [JsonPropertyName("id")] |
| 9 | public string Id { get; set; } = ""; |
| 10 | |
| 11 | [JsonPropertyName("positive")] |
| 12 | public string? Positive { get; set; } |
| 13 | |
| 14 | [JsonPropertyName("negative")] |
| 15 | public string? Negative { get; set; } |
| 16 | } |
| 17 | |
View only · write via MCP/CIDE