mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
added Expansive
This commit is contained in:
11
NzbDrone.Common/Expansive/Tree.cs
Normal file
11
NzbDrone.Common/Expansive/Tree.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace NzbDrone.Common.Expansive
|
||||
{
|
||||
internal class Tree<T> : TreeNode<T>
|
||||
{
|
||||
public Tree(T rootValue)
|
||||
: base(rootValue)
|
||||
{
|
||||
Value = rootValue;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user