endpoint setup
This commit is contained in:
10
app/schemas/full_entry_schema.py
Normal file
10
app/schemas/full_entry_schema.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
||||
Reference in New Issue
Block a user