This commit is contained in:
2026-02-03 17:33:40 +00:00
parent 2a9661978c
commit 74453f7cbc
22 changed files with 1082 additions and 639 deletions

View File

@@ -0,0 +1,21 @@
class Game {
final String id;
final String myTeam;
final String opponentTeam;
final String myScore;
final String opponentScore;
final String season;
final String status;
final DateTime date;
Game({
required this.id,
required this.myTeam,
required this.opponentTeam,
this.myScore = "0",
this.opponentScore = "0",
required this.season,
this.status = "Brevemente",
required this.date,
});
}