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