Files
location_service/app/schemas/full_entry_schema.py
exolonConfidental a77788fc47 endpoint setup
2026-02-08 11:18:47 +05:30

10 lines
334 B
Python

from pydantic import BaseModel
from app.schemas.location_create_schema import LocationCreate
from app.schemas.owner_create_schema import OwnerCreate
from app.schemas.property_create_schema import PropertyCreate
class FullEntryCreateRequest(BaseModel):
location: LocationCreate
owner: OwnerCreate
property: PropertyCreate