ex-col-03-santa/SantaClausInc/Collections/Node.cs
MarcUs7i d3e489b99c Done with List&Stack
Added TargetCity and initialized it by the constructor in Sleigh.cs
2024-12-19 16:32:46 +01:00

7 lines
No EOL
178 B
C#

namespace SantaClausInc.Collections;
public sealed class Node<TValue>(TValue? value)
{
public TValue? Data { get; } = value;
public Node<TValue>? Next { get; set; }
}