interface IModelMaterialsValue {
    geometry: string;
    material: {
        children: {
            label: string;
            symbol: string;
            unit?: IUnit;
            value: string | number;
        }[];
        label: string;
    };
    selected: { label: number; uuid: string }[];
    uuid: string;
}

Properties

geometry: string
material: {
    children: {
        label: string;
        symbol: string;
        unit?: IUnit;
        value: string | number;
    }[];
    label: string;
}
selected: { label: number; uuid: string }[]
uuid: string