mp_driver_server/core/model/note/db.py

11 lines
155 B
Python
Raw Permalink Normal View History

2024-07-08 18:35:04 +03:00
from pydantic import BaseModel
class AppNoteDB(BaseModel):
id: int
user_id: int
task_id: int
note_status: int
tip: int
text: str