17 Zeilen
383 B
Python
17 Zeilen
383 B
Python
"""
|
|
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'
|
|
] |