Files
OpenNest/OpenNest.IO/DxfImportResult.cs
2026-03-24 20:23:53 -04:00

13 lines
258 B
C#

using ACadSharp;
using OpenNest.Geometry;
using System.Collections.Generic;
namespace OpenNest.IO
{
public class DxfImportResult
{
public List<Entity> Entities { get; set; } = new();
public CadDocument Document { get; set; }
}
}