13 lines
248 B
Python
13 lines
248 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
|