Files
kittycad.py/kittycad/models/mouse_move.py

8 lines
183 B
Python
Raw Normal View History

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