mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
505 B
C#
19 lines
505 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities.Profile.Nodes
|
|
{
|
|
public class NodeScriptEntity
|
|
{
|
|
public NodeScriptEntity()
|
|
{
|
|
Nodes = new List<NodeEntity>();
|
|
Connections = new List<NodeConnectionEntity>();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public List<NodeEntity> Nodes { get; set; }
|
|
public List<NodeConnectionEntity> Connections { get; set; }
|
|
}
|
|
} |