10 lines
334 B
Python
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 |