namespace Koogle.Application.Games;
///
/// Represents a team in a game with assigned players.
///
public record GameTeam
{
///
/// Team name (editable by user).
///
public string Name { get; init; } = "";
///
/// Player IDs assigned to this team.
///
public IReadOnlyList PlayerIds { get; init; } = [];
}