2024-09-11 22:57:02 +04:00

7 lines
118 B
Dart

class CardData {
final String name;
final double price;
CardData({required this.name, required this.price});
}