mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
16 lines
411 B
C#
16 lines
411 B
C#
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<NodeEntity> Nodes { get; set; }
|
|
public List<NodeConnectionEntity> Connections { get; set; }
|
|
} |