From 24930767ecb7ce3fc251e239fb8a0116aecf1d1c Mon Sep 17 00:00:00 2001 From: tebogoyungmercykay Date: Mon, 29 Jan 2024 03:26:05 +0200 Subject: [PATCH] Returning the Patient Address and Gender --- app/schemas.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/schemas.py b/app/schemas.py index 8d2f808..65da8d5 100644 --- a/app/schemas.py +++ b/app/schemas.py @@ -79,6 +79,9 @@ class PatientOut(BaseModel): surname: str dob: datetime patient_id: int + address: str + gender: str + mobile_no: int class Config: from_attributes = True