File frontend added to app

This commit is contained in:
2024-06-25 13:47:40 +02:00
parent ad805fdca1
commit 0a83d08492
62 changed files with 497 additions and 64 deletions

View File

@@ -0,0 +1,25 @@
class PFile {
final int idpatient_files;
final String file_path;
final String file_name;
final int patient_id;
final String insert_date;
const PFile(
this.idpatient_files,
this.file_path,
this.file_name,
this.patient_id,
this.insert_date,
);
factory PFile.fromJson(dynamic json) {
return PFile(
json['idpatient_files'],
json['file_path'],
json['file_name'],
json['patient_id'],
json['insert_date'],
);
}
}