Files
kittycad.py/kittycad/models/enable_sketch_mode.py

8 lines
197 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class EnableSketchMode(BaseModel):
"""The response from the `EnableSketchMode` endpoint."""
model_config = ConfigDict(protected_namespaces=())