oscillode/blender_maxwell/node_trees/maxwell_sim_nodes/contracts/schemas/preset_def.py

11 lines
201 B
Python
Raw Normal View History

import typing as typ
import pydantic as pyd
from ..bl import PresetName, SocketName, BLEnumID
class PresetDef(pyd.BaseModel):
label: PresetName
description: str
values: dict[SocketName, typ.Any]