update to v2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user