12 lines
189 B
Python
12 lines
189 B
Python
"""Definition of ColourEnum DTO."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class ColourEnum(StrEnum):
|
|
"""Enumeration for Colour values."""
|
|
|
|
HIGH = "high"
|
|
MEDIUM = "medium"
|
|
LOW = "low"
|