Source code for kittycad.models.select_get

from typing import List

from pydantic import BaseModel



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