Files
StructureHelper/StructureHelperCommon/Services/Exports/IGetDxfLayerLogic.cs
2025-11-01 21:56:47 +05:00

12 lines
318 B
C#

using netDxf;
using netDxf.Tables;
namespace StructureHelperCommon.Services.Exports
{
public interface IGetDxfLayerLogic
{
AciColor GetLayerColor(LayerNames layerName);
string GetLayerName(LayerNames layerName);
Layer GetOrCreateLayer(DxfDocument dxf, LayerNames layerName);
}
}