This commit is contained in:
2024-07-26 15:19:43 +02:00
parent 89c18d9c35
commit 3b7a2c1ca7

View File

@@ -2,14 +2,14 @@ class PFile {
final int idpatient_files; final int idpatient_files;
final String file_path; final String file_path;
final String file_name; final String file_name;
final int patient_id; final String app_id;
final String insert_date; final String insert_date;
const PFile( const PFile(
this.idpatient_files, this.idpatient_files,
this.file_path, this.file_path,
this.file_name, this.file_name,
this.patient_id, this.app_id,
this.insert_date, this.insert_date,
); );
@@ -18,8 +18,8 @@ class PFile {
json['idpatient_files'], json['idpatient_files'],
json['file_path'], json['file_path'],
json['file_name'], json['file_name'],
json['patient_id'],
json['insert_date'], json['insert_date'],
json['app_id'],
); );
} }
} }