8 lines
233 B
C#
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;
|
|
} |