class PhotoModel {
late int id;
late int id_visite;
late int id_photo_typologie;
late String image;
PhotoModel(
{required this.id,
required this.id_visite,
required this.id_photo_typologie,
required this.image});
}