Files
swiss-client/src/app/model/tournamentPlayer.ts
Michel ten Voorde 5a5c134002
All checks were successful
Gitea/swiss-client/pipeline/head This commit looks good
Added match counter
2025-08-18 23:28:15 +02:00

11 lines
167 B
TypeScript

export class TournamentPlayer {
playerId: number;
name: string;
events: string[];
paid: boolean;
present: boolean;
counting: boolean;
counts: number;
}