Files
kittycad.py/kittycad/models/file_source_format.py
Jess Frazelle 9dc390a64d initial fixing
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-06-11 17:26:20 -07:00

13 lines
203 B
Python

from enum import Enum
class FileSourceFormat(str, Enum):
STL = 'stl'
OBJ = 'obj'
DAE = 'dae'
STEP = 'step'
FBX = 'fbx'
def __str__(self) -> str:
return str(self.value)