using OpenNest.Geometry;
namespace OpenNest.Api;
/// One explicit physical-stock type for a whole nesting job.
public class NestRequestPlate
{
public string Id { get; init; }
public Size Size { get; init; }
/// Available physical sheets; null means unlimited.
public int? Quantity { get; init; }
public double PartSpacing { get; init; }
public Spacing EdgeSpacing { get; init; }
public int Quadrant { get; init; } = 1;
}