1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/backend/app/schemas/auth.py
2025-01-02 01:26:51 +06:00

10 lines
196 B
Python

"""Authentication schemas"""
from pydantic import BaseModel
class AdminLogin(BaseModel):
username: str
password: str
class EmployeeLogin(BaseModel):
last_name: str
password: str