24 lines
527 B
Python
24 lines
527 B
Python
from ApiLayers.ApiValidations.Request import (
|
|
Login,
|
|
EmployeeSelection,
|
|
OccupantSelection,
|
|
Logout,
|
|
CreatePassword,
|
|
ChangePassword,
|
|
Forgot,
|
|
Remember,
|
|
)
|
|
|
|
|
|
class AuthenticationRequestModels:
|
|
LoginSuperUserRequestModel = Login
|
|
SelectCompanyOrOccupantTypeSuperUserRequestModel = {
|
|
"EmployeeSelection": EmployeeSelection, "OccupantSelection": OccupantSelection,
|
|
}
|
|
RefresherRequestModel = Remember
|
|
LogoutRequestModel = Logout
|
|
|
|
|
|
class AuthenticationResponseModels:
|
|
pass
|