Olympus/backend/hermes/app/schemas/user.py
2026-07-02 00:00:33 +02:00

17 lines
No EOL
270 B
Python

from pydantic import BaseModel, EmailStr
class UserCreate(BaseModel):
username: str
email: EmailStr
password: str
class UserResponse(BaseModel):
id: int
username: str
email: EmailStr
model_config = {
"from_attributes": True
}