From 9ac607ef13e221f54d4a7bd6cf9b78e518135196 Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Tue, 20 Aug 2024 11:30:26 +0200 Subject: [PATCH] update business to include email --- Frontend/patient_manager/lib/objects/business.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Frontend/patient_manager/lib/objects/business.dart b/Frontend/patient_manager/lib/objects/business.dart index 93240eeb..f8f7bc3f 100644 --- a/Frontend/patient_manager/lib/objects/business.dart +++ b/Frontend/patient_manager/lib/objects/business.dart @@ -7,6 +7,7 @@ class Business { final String logo_name; final String logo_path; final String contact_no; + final String bus_email; final String app_id; const Business( @@ -17,6 +18,7 @@ class Business { this.logo_name, this.logo_path, this.contact_no, + this.bus_email, this.app_id, ); @@ -29,6 +31,7 @@ class Business { json['logo_name'], json['logo_path'], json['contact_no'], + json['bus_email'], json['app_id'], ); }