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