using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace C_.Datastructures.Generic { internal class DirectedNode { public T? Value { get; set; } = default; public NodeType? Left { get; set; } = default; public NodeType? Right { get; set; } = default; } }