13 lines
258 B
C#
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; }
|
|
}
|
|
}
|