Files
OpenNest/OpenNest.Api/NestRequestPart.cs
2026-03-19 08:26:51 -04:00

10 lines
240 B
C#

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;
}