using Perspex.Collections; namespace TestApplication { internal class Node { public Node() { Children = new PerspexList(); } public string Name { get; set; } public PerspexList Children { get; set; } } }