using System.Collections.Generic; namespace Artemis.Storage.Entities.Profile.Nodes; public 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; } }