Radarr/src/NzbDrone.Common/Expansive/Tree.cs

12 lines
210 B
C#
Raw Normal View History

2013-04-16 00:07:58 +00:00
namespace NzbDrone.Common.Expansive
{
internal class Tree<T> : TreeNode<T>
{
public Tree(T rootValue)
: base(rootValue)
{
Value = rootValue;
}
}
2019-12-22 21:24:10 +00:00
}