services updated

This commit is contained in:
2025-03-25 10:43:25 +03:00
parent 92942af6f3
commit 79028493a9
298 changed files with 23435 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
from typing import Dict
LoginRequestLanguageModel: Dict[str, Dict[str, str]] = {
"tr": {
"domain": "Domain",
"access_key": "Erişim Anahtarı",
"password": "Parola",
"remember_me": "Beni Hatırla",
},
"en": {
"domain": "Domain",
"access_key": "Access Key",
"password": "Password",
"remember_me": "Remember Me",
},
}
SelectRequestLanguageModel: Dict[str, Dict[str, str]] = {
"tr": {
"company_uu_id": "Şirket UU ID",
"build_living_space_uu_id": "Bina Konut UU ID",
},
"en": {
"company_uu_id": "Company UU ID",
"build_living_space_uu_id": "Build Living Space UU ID",
},
}

View File

@@ -0,0 +1,9 @@
from .Auth.login import (
LoginRequestLanguageModel,
SelectRequestLanguageModel,
)
__all__ = [
"LoginRequestLanguageModel",
"SelectRequestLanguageModel",
]