framework/cg/freecad/Frames/model/files_generator.py

13 lines
201 B
Python
Raw Normal View History

from enum import Enum
class FilesGenerator(Enum):
DETAIL = 'detail.json'
ASSEMBLY = 'assembly.json'
class FolderGenerator(Enum):
MESHES = 'meshes'
ASSETS = 'assets'
SDF = 'sdf'