10 lines
225 B
C#
10 lines
225 B
C#
namespace OpenNest.Data;
|
|
|
|
public class LeadConfig
|
|
{
|
|
public string Type { get; set; } = "Line";
|
|
public double Length { get; set; }
|
|
public double Angle { get; set; } = 90.0;
|
|
public double Radius { get; set; }
|
|
}
|