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

19 lines
357 B
Dart
Raw Normal View History

class CardPostData {
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;
final bool? isLiked;
2024-12-13 03:03:08 +04:00
const CardPostData(
{this.name,
this.surname,
this.description,
this.imageUrl,
this.isLiked,
this.age,
this.distance});
}