Paarungsergebnisse hinzugefügt
This commit is contained in:
@@ -31,8 +31,30 @@ class RitzenbergenLib {
|
||||
}
|
||||
}
|
||||
|
||||
class Paarung {
|
||||
public heim: string;
|
||||
public gast: string;
|
||||
constructor (heim: string, gast: string) {
|
||||
this.heim = heim;
|
||||
this.gast = gast;
|
||||
}
|
||||
}
|
||||
|
||||
class Ergebnis {
|
||||
paarung: Paarung;
|
||||
heim: number;
|
||||
gast: number;
|
||||
constructor (paarung: Paarung, heim: number, gast: number) {
|
||||
this.paarung = paarung;
|
||||
this.heim = heim;
|
||||
this.gast = gast;
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
RitzenbergenLib,
|
||||
User,
|
||||
SpieltagSumme
|
||||
}
|
||||
SpieltagSumme,
|
||||
Paarung,
|
||||
Ergebnis
|
||||
}
|
||||
Reference in New Issue
Block a user