namespace WaitingRoom; /// /// Represents a node which holds patient data and can be linked with other /// nodes to form the waiting queue /// public sealed class Node { public Patient Data { get; } public Node? Next { get; set; } public Node(Patient patient) { Data = patient; } }