18 lines
420 B
Dart
18 lines
420 B
Dart
class GameData {
|
|
final int? id;
|
|
final String name;
|
|
//final int price;
|
|
final DateTime date;
|
|
final String? image;
|
|
//Описание игры
|
|
final String? description;
|
|
|
|
GameData(
|
|
{ this.id,
|
|
required this.name,
|
|
//required this.price,
|
|
required this.date,
|
|
this.description,
|
|
this.image =
|
|
'https://parpol.ru/wp-content/uploads/2019/09/placeholder.png'});
|
|
} |