13 lines
232 B
Python
13 lines
232 B
Python
from pydantic import BaseModel
|
|
|
|
class HouseResponse(BaseModel):
|
|
id: str
|
|
description: str
|
|
address: str
|
|
city: str
|
|
country: str
|
|
price: float
|
|
|
|
class HousesListResponse(BaseModel):
|
|
houses: list[HouseResponse]
|