mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
7 lines
108 B
C#
7 lines
108 B
C#
namespace Basketball;
|
|
|
|
internal record Team(string Name)
|
|
{
|
|
public override string ToString() => Name;
|
|
}
|