BrainTum / application /schema.py
olusegun.odewole
first commit
b7f151e
raw
history blame
No virus
174 Bytes
from pydantic import BaseModel
class Symptom(BaseModel):
fever: bool = False
dry_cough: bool = False
tiredness: bool = False
breathing_problem: bool = False