2024-11-26 16:43:55 +04:00
|
|
|
class CardPostData {
|
2024-12-13 03:03:08 +04:00
|
|
|
final String? name;
|
|
|
|
final String? surname;
|
|
|
|
final String? description;
|
2024-11-26 16:43:55 +04:00
|
|
|
final String? imageUrl;
|
2024-12-13 03:03:08 +04:00
|
|
|
final int? age;
|
|
|
|
final double? distance;
|
|
|
|
final bool? isLiked;
|
2024-11-26 16:43:55 +04:00
|
|
|
|
2024-12-13 03:03:08 +04:00
|
|
|
const CardPostData(
|
|
|
|
{this.name,
|
|
|
|
this.surname,
|
|
|
|
this.description,
|
|
|
|
this.imageUrl,
|
|
|
|
this.isLiked,
|
|
|
|
this.age,
|
|
|
|
this.distance});
|
2024-11-26 16:43:55 +04:00
|
|
|
}
|