Files
visual-semiotic-ai-analysis/data_store/dto/depth_enum.py
T

12 lines
186 B
Python

"""Definition of DepthEnum DTO."""
from enum import StrEnum
class DepthEnum(StrEnum):
"""Enumeration for Depth values."""
HIGH = "high"
MEDIUM = "medium"
LOW = "low"