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; }