from dataclasses import dataclass
from uuid import UUID
@dataclass(frozen=True)
class UserResponse:
name: str
email: str
class UserDetaledResponse:
id: UUID
hashed_password: str