15 lines
323 B
Dart
15 lines
323 B
Dart
class Game {
|
|
final int? id;
|
|
final String name;
|
|
final DateTime date;
|
|
final String? image;
|
|
final String? description;
|
|
|
|
Game(
|
|
{required this.id,
|
|
required this.name,
|
|
required this.date,
|
|
this.description,
|
|
this.image = 'https://parpol.ru/wp-content/uploads/2019/09/placeholder.png'});
|
|
}
|