Tipp-Formular hinzugefügt

This commit is contained in:
R40fendt
2025-08-18 21:47:10 +02:00
parent 661f523793
commit 928f50a55e
4 changed files with 122 additions and 43 deletions

View File

@@ -64,10 +64,23 @@ class Ergebnis {
}
}
class Tipp{
heim: number|null;
gast: number|null;
paarung: Paarung|null;
constructor (paarung: Paarung|null, heim: number|null, gast: number|null) {
this.heim = heim;
this.gast = gast;
this.paarung = paarung;
}
}
export default {
RitzenbergenLib,
User,
SpieltagSumme,
Paarung,
Ergebnis
Ergebnis,
Tipp
}