2024-08-26 21:05:34 +02:00
|
|
|
from pydantic import BaseModel
|
|
|
|
from arztapi.DoctorInformation import PhoneTime
|
|
|
|
|
|
|
|
|
|
|
|
class DoctorPhoneTime(BaseModel):
|
2024-09-07 21:12:55 +02:00
|
|
|
"""
|
|
|
|
Relevant phone time to show at the web interface
|
|
|
|
"""
|
2024-08-26 21:05:34 +02:00
|
|
|
phone_time: PhoneTime
|
2024-08-28 10:08:46 +02:00
|
|
|
doctor_nr: int
|
2024-08-26 21:05:34 +02:00
|
|
|
doctor_name: str
|
|
|
|
doctor_address: str
|
|
|
|
doctor_phone_number: str
|