using OpenNest.CNC; using OpenNest.Engine.RapidPlanning; using System.Collections.Generic; namespace OpenNest.Engine { public class PlateResult { public List Parts { get; init; } } public readonly struct ProcessedPart { public Part Part { get; init; } public Program ProcessedProgram { get; init; } public RapidPath RapidPath { get; init; } } }