mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-04 23:39:33 +08:00
10 lines
206 B
C#
10 lines
206 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Infrastructure
|
|
{
|
|
public class TreeItem<T>
|
|
{
|
|
public T Item { get; set; }
|
|
public IEnumerable<TreeItem<T>> Children { get; set; }
|
|
}
|
|
} |