Добавьте файлы проекта.
This commit is contained in:
8
SQLVision.Core/Models/ScriptCategory.cs
Normal file
8
SQLVision.Core/Models/ScriptCategory.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user