10 lines
215 B
Python
10 lines
215 B
Python
|
from pydantic import BaseModel
|
||
|
from arztapi.DoctorInformation import PhoneTime
|
||
|
|
||
|
|
||
|
class DoctorPhoneTime(BaseModel):
|
||
|
phone_time: PhoneTime
|
||
|
doctor_name: str
|
||
|
doctor_address: str
|
||
|
doctor_phone_number: str
|