Fixed project structure
This commit is contained in:
parent
db5745f827
commit
015aa38e16
12 changed files with 1136 additions and 1270 deletions
13
lib/models/available_game.dart
Normal file
13
lib/models/available_game.dart
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
class AvailableGame {
|
||||
final String id;
|
||||
final String opponentName;
|
||||
final int tries;
|
||||
final String neededRole;
|
||||
|
||||
AvailableGame({
|
||||
required this.id,
|
||||
required this.opponentName,
|
||||
required this.tries,
|
||||
required this.neededRole,
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue