13 lines
203 B
Python
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)
|