public static FluentAppTree BeginAppTree(this HtmlHelper html, string id, string className)
 {
     var apptree = new AppTree(html, id) { ClassName = className };
     return apptree.Begin();
 }
 public FluentAppTree(AppTree appTree)
 {
     Control = appTree;
 }