Initial commit
Dieser Commit ist enthalten in:
17
domain/value_objects/__init__.py
Normale Datei
17
domain/value_objects/__init__.py
Normale Datei
@ -0,0 +1,17 @@
|
||||
"""
|
||||
Domain Value Objects - Unveränderliche Wertobjekte ohne Identität
|
||||
"""
|
||||
|
||||
from .action_timing import ActionTiming, ActionType
|
||||
from .error_summary import ErrorSummary
|
||||
from .report import Report, ReportType
|
||||
from .login_credentials import LoginCredentials
|
||||
|
||||
__all__ = [
|
||||
'ActionTiming',
|
||||
'ActionType',
|
||||
'ErrorSummary',
|
||||
'Report',
|
||||
'ReportType',
|
||||
'LoginCredentials'
|
||||
]
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren