Node.cs 286 B

12345678910111213141516
  1. using Perspex.Collections;
  2. namespace TestApplication
  3. {
  4. internal class Node
  5. {
  6. public Node()
  7. {
  8. Children = new PerspexList<Node>();
  9. }
  10. public string Name { get; set; }
  11. public PerspexList<Node> Children { get; set; }
  12. }
  13. }