using System.Collections.Generic; namespace UIInfoBuilder.Data { public class UIInfoNode { public string name; public bool active; public List components = new List(); public List children = new List(); } }