mobdr/lib/model/photo_model.dart

13 lines
272 B
Dart

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