Files
kittycad.py/kittycad/models/unit_illuminance_format.py

12 lines
244 B
Python
Raw Normal View History

2022-07-25 22:46:48 +00:00
from enum import Enum
class UnitIlluminanceFormat(str, Enum):
LUX = 'lux'
FOOTCANDLE = 'footcandle'
LUMENS_PER_SQUARE_INCH = 'lumens_per_square_inch'
PHOT = 'phot'
def __str__(self) -> str:
return str(self.value)