14 lines
303 B
Python
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
|