mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-04 13:54:26 +01:00
11 lines
No EOL
209 B
C#
11 lines
No EOL
209 B
C#
namespace NzbDrone.Common.Expansive
|
|
{
|
|
internal class Tree<T> : TreeNode<T>
|
|
{
|
|
public Tree(T rootValue)
|
|
: base(rootValue)
|
|
{
|
|
Value = rootValue;
|
|
}
|
|
}
|
|
} |