8 lines
179 B
C#
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; }
|
|
}
|