namespace Artemis.Storage.Legacy.Entities.Profile.Nodes; internal class NodeScriptEntity { public NodeScriptEntity() { Nodes = []; Connections = []; } public string Name { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public List Nodes { get; set; } public List Connections { get; set; } }