feat: update users

This commit is contained in:
2026-05-12 21:44:18 +03:00
parent 2d9f44979c
commit cec8d896b6
6 changed files with 11 additions and 5 deletions

View File

@@ -22,6 +22,7 @@ class UserLoginDto:
phone: str | None = None
passport_data: str | None = None
inn: str | None = None
erc20: str | None = None
kyc_verified: bool | None = None
access_token: str | None = None
refresh_token: str | None = None

View File

@@ -19,6 +19,7 @@ class UserEntity:
passport_data: str | None = None
inn: str | None = None
erc20: str | None = None
kyc_verified: bool | None = None
is_deleted: bool | None = None