using System.Collections.Generic;
namespace OpenNest.Engine.Jobs;
/// Owned candidate poses only; not committed fulfillment or inventory accounting.
public sealed class PlateCandidate
{
public PlateCandidate(IEnumerable placements) =>
Placements = NestJob.Own(placements);
public IReadOnlyList Placements { get; }
}