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