feat: add OpenNest.Data project with MachineType and UnitSystem enums

This commit is contained in:
2026-03-27 20:13:54 -04:00
parent ae9a63b5ce
commit 5d3fcb2dc8
4 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace OpenNest.Data;
public enum MachineType
{
Laser,
Plasma,
Waterjet
}

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>OpenNest.Data</RootNamespace>
<AssemblyName>OpenNest.Data</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,7 @@
namespace OpenNest.Data;
public enum UnitSystem
{
Inches,
Millimeters
}