hiring_assessment/backend/app/dtos/owner_list_response.py
2025-02-19 16:25:48 +01:00

11 lines
164 B
Python

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