14 lines
249 B
Python
14 lines
249 B
Python
"""Definition of ModalityDepthData data model."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .data_model import DataModel
|
|
|
|
|
|
class ModalityDepthData(DataModel):
|
|
"""ModalityDepthData data model."""
|
|
|
|
high: float
|
|
medium: float
|
|
low: float
|