ex-col-01-marathon/Marathons/Node.cs

8 lines
179 B
C#

namespace Marathons;
public sealed class Node(Participant? value)
{
//accept anything
public Participant? Data { get; } = value;
public Node? Next { get; set; }
}