8 lines
115 B
Python
8 lines
115 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OwnerDetailResponse(BaseModel):
|
|
id: str
|
|
user_id: str
|
|
email: str
|