feat: house price prediction model integration
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
from backend.app.dtos.user.user_response import UserResponse
|
||||
|
||||
class UserListResponse(BaseModel):
|
||||
users: list[UserResponse]
|
||||
@@ -0,0 +1,6 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class UserResponse(BaseModel):
|
||||
id: str
|
||||
email: str
|
||||
Reference in New Issue
Block a user