Move to new server
This commit is contained in:
14
src/app/model/match.ts
Normal file
14
src/app/model/match.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user