15 lines
323 B
Dart
Raw Normal View History

2024-12-21 22:12:25 +04:00
class Game {
2024-11-15 21:47:58 +04:00
final int? id;
2024-10-29 18:39:40 +04:00
final String name;
2024-11-15 21:47:58 +04:00
final DateTime date;
2024-10-29 18:39:40 +04:00
final String? image;
final String? description;
2024-12-21 22:12:25 +04:00
Game(
{required this.id,
required this.name,
required this.date,
this.description,
this.image = 'https://parpol.ru/wp-content/uploads/2019/09/placeholder.png'});
}