theraPy/arztapi/DoctorPhoneTime.py
2024-08-28 10:08:46 +02:00

11 lines
234 B
Python

from pydantic import BaseModel
from arztapi.DoctorInformation import PhoneTime
class DoctorPhoneTime(BaseModel):
phone_time: PhoneTime
doctor_nr: int
doctor_name: str
doctor_address: str
doctor_phone_number: str