Files
kittycad.py/kittycad/models/modeling_cmd_req.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

14 lines
298 B
Python

from pydantic import BaseModel
from ..models.modeling_cmd import ModelingCmd
from ..models.modeling_cmd_id import ModelingCmdId
class ModelingCmdReq(BaseModel):
"""A graphics command submitted to the KittyCAD engine via the Modeling API."""
cmd: ModelingCmd
cmd_id: ModelingCmdId