diff --git a/OpenNest.Engine/PlateResult.cs b/OpenNest.Engine/PlateResult.cs new file mode 100644 index 0000000..7209be7 --- /dev/null +++ b/OpenNest.Engine/PlateResult.cs @@ -0,0 +1,18 @@ +using System.Collections.Generic; +using OpenNest.CNC; +using OpenNest.Engine.RapidPlanning; + +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; } + } +}