from pydantic import EmailStr, SecretStr, ConfigDict
from ascender.common import BaseResponse


class UserResponse(BaseResponse):
    model_config = ConfigDict(from_attributes=True)
    
    id: int
    username: str
    email: EmailStr
