12 lines
312 B
C#
12 lines
312 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
namespace UIInfoBuilder.Data
|
|||
|
|
{
|
|||
|
|
public class UIInfoNode
|
|||
|
|
{
|
|||
|
|
public string name;
|
|||
|
|
public bool active;
|
|||
|
|
public List<UIInfoComponent> components = new List<UIInfoComponent>();
|
|||
|
|
public List<UIInfoNode> children = new List<UIInfoNode>();
|
|||
|
|
}
|
|||
|
|
}
|