theraPy/arztapi/DoctorPhoneTime.py
2024-09-07 21:12:55 +02:00

14 lines
303 B
Python

from pydantic import BaseModel
from arztapi.DoctorInformation import PhoneTime
class DoctorPhoneTime(BaseModel):
"""
Relevant phone time to show at the web interface
"""
phone_time: PhoneTime
doctor_nr: int
doctor_name: str
doctor_address: str
doctor_phone_number: str