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