Renamed classes.py into decrypted_accounts.py. Removed unnessesary elements from that file

This commit is contained in:
2022-12-25 21:01:18 +03:00
parent 3f744723a9
commit 50eb3057d5
7 changed files with 14 additions and 27 deletions

8
src/decrypted_account.py Normal file
View File

@ -0,0 +1,8 @@
import pydantic
class DecryptedAccount(pydantic.BaseModel):
user_id: int
name: str
login: str
password: str