11 lines
191 B
Python
11 lines
191 B
Python
"""Definition of PointOfViewEnum DTO."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class PointOfViewEnum(StrEnum):
|
|
"""Enumeration for Point of View."""
|
|
|
|
FRONTAL = "frontal"
|
|
OBLIQUE = "oblique"
|