2024-12-21 19:58:24 +04:00

17 lines
293 B
Dart

class CardData{
final int id;
final String fullName;
final String title;
final String family;
final String imageUrl;
CardData (
this.fullName, {
required this.id,
required this.title,
required this.family,
required this.imageUrl
});
}