ex-col-04-training/waiting_room/WaitingRoom/Node.cs
github-classroom[bot] 3723fffef2
Initial commit
2025-01-02 16:34:36 +00:00

10 lines
No EOL
217 B
C#

namespace WaitingRoom;
/// <summary>
/// Represents a node which holds patient data and can be linked with other
/// nodes to form the waiting queue
/// </summary>
public sealed class Node
{
// TODO
}