Files
SQLVision/SQLVision.Core/Models/ScriptCategory.cs
2026-01-05 00:37:54 +03:00

8 lines
233 B
C#

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