namespace SQLVision.Core.Models; public class ScriptCategory { public string Name { get; set; } = string.Empty; public List Scripts { get; set; } = new(); public bool IsExpanded { get; set; } = true; }