namespace Basketball; internal record Team(string Name) { public override string ToString() => Name; }