using System.Collections.Generic; namespace Artemis.Storage.Entities.Profile.Nodes { public class NodeScriptEntity { public NodeScriptEntity() { Nodes = new List(); Connections = new List(); } public string Name { get; set; } public string Description { get; set; } public List Nodes { get; set; } public List Connections { get; set; } } }