csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary> |
| 4 | /// Правило резолва mount-style для mount-слоя инструмента. |
| 5 | /// TOML: <c>[[display.mount.rules]]</c>. |
| 6 | /// </summary> |
| 7 | public sealed class InstrumentMountPolicyRuleSettings |
| 8 | { |
| 9 | public string Surface { get; set; } = "*"; |
| 10 | |
| 11 | public string Slot { get; set; } = "*"; |
| 12 | |
| 13 | public string Instrument { get; set; } = "*"; |
| 14 | |
| 15 | public string Style { get; set; } = InstrumentMountPolicyIds.V1; |
| 16 | |
| 17 | public double? SaScore { get; set; } |
| 18 | |
| 19 | public double? PerformanceScore { get; set; } |
| 20 | |
| 21 | public double? WorkloadScore { get; set; } |
| 22 | } |
| 23 | |
View only · write via MCP/CIDE