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

13
src/app/model/round.ts Normal file
View File

@@ -0,0 +1,13 @@
import {Match} from "./match";
import {Team} from "./team";
import {Standings} from "./standings";
export class Round {
id: number;
name: string;
matches: Match[];
status: string;
quit: Team[];
drawnOut: Team;
standings: Standings;
}