Fixed project structure
This commit is contained in:
parent
db5745f827
commit
015aa38e16
12 changed files with 1136 additions and 1270 deletions
8
lib/models/game.dart
Normal file
8
lib/models/game.dart
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
class Game {
|
||||
final String id;
|
||||
final String player1;
|
||||
final String player2;
|
||||
final Set<String> colors;
|
||||
|
||||
Game(this.id, this.player1, this.player2, this.colors);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue