Paarungsergebnisse hinzugefügt

This commit is contained in:
R40fendt
2025-05-06 11:25:10 +02:00
parent 3323ee1f8f
commit 2a306c7b6d
4 changed files with 96 additions and 146 deletions

View File

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