DemoRoot.cs 167 B

123456
  1. namespace WpfSample.Models {
  2. internal class DemoRoot: DemoItem {
  3. protected DemoRoot() { }
  4. static public DemoRoot Root = new DemoRoot();
  5. }
  6. }