Added GenericNode outline

This commit is contained in:
Luke Else 2022-03-31 21:23:49 +01:00
parent de0f4195ed
commit ea5d5a73ed

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace C_.Datastructures.Nodes
{
internal class Node<T, NodeType>
{
public T? Value { get; set; } = default;
public NodeType? Next { get; set; } = default;
}
}