Source code for kittycad.models.entity_get_sketch_paths

from typing import List

from .base import KittyCadBaseModel


[docs] class EntityGetSketchPaths(KittyCadBaseModel): """The response from the `EntityGetSketchPaths` command.""" entity_ids: List[str]