Files
kittycad.py/kittycad/models/select_remove.py

8 lines
189 B
Python
Raw Normal View History

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