PMU-PIbd-31-Potapov-N-S/lib/domain/models/card.dart

22 lines
344 B
Dart
Raw Normal View History

2024-12-19 13:20:27 +04:00
class CardData {
2024-12-19 18:44:53 +04:00
2024-12-13 03:03:08 +04:00
final String? name;
final String? surname;
final String? description;
final String? imageUrl;
2024-12-13 03:03:08 +04:00
final int? age;
final double? distance;
2024-12-19 18:44:53 +04:00
final String? id;
2024-12-19 13:20:27 +04:00
const CardData(
2024-12-13 03:03:08 +04:00
{this.name,
this.surname,
this.description,
this.imageUrl,
this.age,
2024-12-19 18:44:53 +04:00
this.distance,
this.id});
}