Files

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"