10 lines
No EOL
217 B
C#
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
|
|
} |