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; isFinalsRound: boolean; }