mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-01 05:35:09 +03:00
7 lines
120 B
Python
7 lines
120 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class UserUpdatableProperties(BaseModel):
|
||
|
# Nothing for now
|
||
|
empty: bool = True
|