namespace LazyBear.MCP.TUI.Models; public enum SettingsEntryKind { Module, Tool } public sealed record SettingsEntry( SettingsEntryKind Kind, string ModuleName, string? ToolName, string Label, string Description, bool IsChecked, bool IsModuleEnabled, bool IsExpanded, int Depth);