diff options
Diffstat (limited to 'api/schemas/user_schemas.py')
-rw-r--r-- | api/schemas/user_schemas.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/api/schemas/user_schemas.py b/api/schemas/user_schemas.py new file mode 100644 index 0000000..949b9a5 --- /dev/null +++ b/api/schemas/user_schemas.py @@ -0,0 +1,11 @@ +from pydantic import BaseModel + + +class LoginDataSchema(BaseModel): + username: str + password: str + + +class UpdatePasswordSchema(BaseModel): + current_password: str + new_password: str |