update to v2

This commit is contained in:
2025-03-22 14:12:21 +01:00
parent 4092b128bc
commit 0daedc28dc
10 changed files with 88 additions and 51 deletions

View File

@@ -1,15 +1,15 @@
import { Club } from "./club";
import { Team } from "./team";
import { TeamCategory } from "./team-category";
import { Tournament } from "./tournament";
import { TeamChampionship } from "./team-championship";
export interface TeamEntry {
id?: number;
sentBy: Club;
status: number;
category: TeamCategory;
tournament: Tournament;
createdAt: string;
updatedAt?: string;
team: Team;
id?: number;
sentBy: Club;
teamChampionship: TeamChampionship;
category: TeamCategory;
team: Team;
missingMalePlayerCount?: number;
missingFemalePlayerCount?: number;
canAddGuestPlayers: boolean;
}