tanbushi's picture
auth and is_admin
f807217
raw
history blame contribute delete
173 Bytes
from pydantic import BaseModel
class UserModel(BaseModel):
id: int = 0
username: str
password: str
email: str
nikename: str = None
is_admin: int = 0