Source code for kittycad.models.mouse_move

from pydantic import BaseModel, ConfigDict


[docs] class MouseMove(BaseModel): """The response from the `MouseMove` endpoint.""" model_config = ConfigDict(protected_namespaces=())