revengel66 386c3087b0 begin
2024-12-17 17:19:10 +04:00

14 lines
203 B
Dart

class CardData {
final String name;
final String description;
final String? img;
final String? id;
CardData(
this.name, {
required this.description,
this.img,
this.id,
});
}