14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
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;
|
|
}
|