TestNode.cs 434 B

1234567891011121314
  1. // Copyright (c) The Perspex Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System.Collections.Generic;
  4. namespace XamlTestApplication.ViewModels
  5. {
  6. public class TestNode
  7. {
  8. public string Header { get; set; }
  9. public string SubHeader { get; set; }
  10. public IEnumerable<TestNode> Children { get; set; }
  11. }
  12. }