| 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Значения <see cref="IntercomSettings.TciValidationIcon"/> (TOML <c>[intercom] tci_validation_icon</c>).</summary> |
| 4 | public static class TciValidationIconModes |
| 5 | { |
| 6 | public const string Left = "left"; |
| 7 | public const string Right = "right"; |
| 8 | public const string HighlightOnly = "highlight_only"; |
| 9 | } |
| 10 |