routine update

This commit is contained in:
yubaolee
2016-10-14 17:39:21 +08:00
parent 8fca8cb00e
commit e68555e976
2 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace Infrastructure
{
public class TreeItem<T>
{
public T Item { get; set; }
public IEnumerable<TreeItem<T>> Children { get; set; }
}
}