using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace C_.Datastructures.Nodes { internal class Node {//Generic Node type that every other type inherits from public T? Value { get; set; } = default; public NodeType? Next { get; set; } = default; } }