17 lines
348 B
Dart
17 lines
348 B
Dart
class CardData {
|
|
final String text;
|
|
final String descriptionText;
|
|
final String? imageUrl;
|
|
final String? id;
|
|
final int? year;
|
|
final List<String>? genres;
|
|
final List<String>? countries;
|
|
CardData(this.text, {
|
|
required this.descriptionText,
|
|
this.imageUrl,
|
|
this.id,
|
|
this.year,
|
|
this.genres,
|
|
this.countries,
|
|
});
|
|
} |