Files
kittycad.py/kittycad/models/entity_linear_pattern.py
Jess Frazelle 6e170684d5 bump
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-12-21 08:14:08 -08:00

11 lines
187 B
Python

from typing import List
from pydantic import BaseModel
class EntityLinearPattern(BaseModel):
"""The response from the `EntityLinearPattern` command."""
entity_ids: List[str]