Files
kittycad.py/kittycad/models/unit_force_format.py
2022-07-25 22:46:48 +00:00

13 lines
232 B
Python

from enum import Enum
class UnitForceFormat(str, Enum):
NEWTON = 'newton'
POUND = 'pound'
DYNE = 'dyne'
KILOPOUND = 'kilopound'
POUNDAL = 'poundal'
def __str__(self) -> str:
return str(self.value)