First version of retrieving a gamesession from the db
This commit is contained in:
12
lib/data/dto/round_score.dart
Normal file
12
lib/data/dto/round_score.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
class RoundScore {
|
||||
final String roundId;
|
||||
final String playerId;
|
||||
final int score;
|
||||
final int scoreUpdate;
|
||||
|
||||
RoundScore(
|
||||
{required this.roundId,
|
||||
required this.playerId,
|
||||
required this.score,
|
||||
required this.scoreUpdate});
|
||||
}
|
||||
Reference in New Issue
Block a user