added new annotation types
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
"""Definition of LightingEnum DTO."""
|
||||
|
||||
from enum import StrEnum
|
||||
|
||||
|
||||
class LightingEnum(StrEnum):
|
||||
"""Enumeration for Lighting values."""
|
||||
|
||||
HIGH = "high"
|
||||
MEDIUM = "medium"
|
||||
LOW = "low"
|
||||
Reference in New Issue
Block a user