mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +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; }
|
|||
|
}
|
|||
|
}
|