feat: add MultiPlateResult type for part-first nesting

This commit is contained in:
2026-04-06 13:46:51 -04:00
parent a8dc275da4
commit ebad3577dd

View File

@@ -0,0 +1,18 @@
using System.Collections.Generic;
namespace OpenNest
{
public class MultiPlateResult
{
public List<PlateResult> Plates { get; set; } = new();
public List<NestItem> UnplacedItems { get; set; } = new();
}
public class PlateResult
{
public Plate Plate { get; set; }
public List<Part> Parts { get; set; } = new();
public PlateOption ChosenSize { get; set; }
public bool IsNew { get; set; }
}
}