XiaoYun Zhang
update
6abb254
raw
history blame contribute delete
No virus
209 Bytes
from pydantic import BaseModel
from .document import Document
class User(BaseModel):
user_name: str
email: str
full_name: str
disabled: bool = None
documents: list[Document] = None