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

12 lines
210 B
C#

namespace NzbDrone.Common.Expansive
{
internal class Tree<T> : TreeNode<T>
{
public Tree(T rootValue)
: base(rootValue)
{
Value = rootValue;
}
}
}