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
+14
View File
@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace OpenNest.Data;
public class ThicknessConfig
{
public double Value { get; set; }
public double Kerf { get; set; }
public string AssistGas { get; set; } = "";
public LeadConfig LeadIn { get; set; } = new();
public LeadConfig LeadOut { get; set; } = new();
public CutOffConfig CutOff { get; set; } = new();
public List<string> PlateSizes { get; set; } = new();
}