Completed daos, added basic GameTable & GameDao

This commit is contained in:
2025-11-08 17:09:02 +01:00
parent 4503574443
commit b03979b0c6
13 changed files with 984 additions and 116 deletions

View File

@@ -1,6 +1,6 @@
class Player {
final String id;
final String username;
final String name;
Player({required this.id, required this.username});
Player({required this.id, required this.name});
}