Files
DataStructuresCSharp/Datastructures/Generic/DirectedNode.cs
2022-11-04 12:03:03 +00:00

15 lines
389 B
C#

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