Source code for kittycad.models.imported_geometry

from typing import List

from .base import KittyCadBaseModel


[docs] class ImportedGeometry(KittyCadBaseModel): """Data from importing the files""" id: str value: List[str]