hiring_assessment/backend/app/dtos/owner_list_response.py
2025-02-19 15:22:02 +01:00

9 lines
162 B
Python

from pydantic import BaseModel
class OwnerResponse(BaseModel):
id: str
user_id: str
class OwnerListResponse(BaseModel):
owners: list[OwnerResponse]