feat: add LeadConfig, CutOffConfig, and ThicknessConfig data models

This commit is contained in:
2026-03-27 20:14:39 -04:00
parent 5d3fcb2dc8
commit 64874857a1
3 changed files with 32 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace OpenNest.Data;
public class LeadConfig
{
public string Type { get; set; } = "Line";
public double Length { get; set; }
public double Angle { get; set; } = 90.0;
public double Radius { get; set; }
}