27 lines
635 B
Python
27 lines
635 B
Python
"""
|
|
DTO package for visual-semiotic-ai-analysis.
|
|
Exposes core data transfer objects and enums for use throughout the project.
|
|
"""
|
|
|
|
from .angle_enum import AngleEnum
|
|
from .annotation import Annotation
|
|
from .colour_enum import ColourEnum
|
|
from .contact_enum import ContactEnum
|
|
from .depth_enum import DepthEnum
|
|
from .distance_enum import DistanceEnum
|
|
from .job import Job
|
|
from .lighting_enum import LightingEnum
|
|
from .point_of_view_enum import PointOfViewEnum
|
|
|
|
__all__ = [
|
|
"AngleEnum",
|
|
"Annotation",
|
|
"ContactEnum",
|
|
"DistanceEnum",
|
|
"Job",
|
|
"PointOfViewEnum",
|
|
"ColourEnum",
|
|
"DepthEnum",
|
|
"LightingEnum",
|
|
]
|