Doppelkopf-Stats-Frontend/src/app/models/doppelkopf/player.ts
Patrick Mueller e8165727de
All checks were successful
Jenkins Production Deployment
Add charlie to point calculation
2022-09-15 15:43:29 +02:00

15 lines
291 B
TypeScript

import {Team} from './enums/team';
export interface Player {
firebonkId: number;
uuid: string;
firstName: string;
finalCardScore: number;
gamePoints: number;
hadMarriage?: boolean;
hadTrumpHandoff?: boolean;
team?: Team;
foxesCaught?: number;
wonLastTrickWithCharlie?: boolean;
}