19 lines
357 B
Dart
19 lines
357 B
Dart
class CardPostData {
|
|
final String? name;
|
|
final String? surname;
|
|
final String? description;
|
|
final String? imageUrl;
|
|
final int? age;
|
|
final double? distance;
|
|
final bool? isLiked;
|
|
|
|
const CardPostData(
|
|
{this.name,
|
|
this.surname,
|
|
this.description,
|
|
this.imageUrl,
|
|
this.isLiked,
|
|
this.age,
|
|
this.distance});
|
|
}
|