interface TeamDto {
    numPoints: number;
    roundsPlayed: number;
    roundsWon: number;
    teamId: string;
    won: boolean;
}

Properties

numPoints: number
roundsPlayed: number
roundsWon: number
teamId: string
won: boolean