mobdr/lib/model/photo_model.dart

15 lines
322 B
Dart

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