feat(api): add NestStrategy, NestRequestPart, NestRequest

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 08:26:51 -04:00
parent b6bd7eda6e
commit 84679b40ce
4 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace OpenNest.Api;
public class NestRequestPart
{
public string DxfPath { get; init; }
public int Quantity { get; init; } = 1;
public bool AllowRotation { get; init; } = true;
public int Priority { get; init; } = 0;
}