Move to new server

This commit is contained in:
2024-10-12 13:38:41 +02:00
commit e2e855e9b9
113 changed files with 11268 additions and 0 deletions

14
src/app/model/match.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Team } from "./team";
import {Game} from "./game";
export class Match {
id: number;
type: string;
status: string;
team1: Team;
team2: Team;
startTime: Date;
endTime: Date;
games: Game[];
court: number;
}