Added tool selection for kerf width
This commit is contained in:
14
CutToLength/Tool.cs
Normal file
14
CutToLength/Tool.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace CutToLength
|
||||
{
|
||||
public class Tool
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public double Kerf { get; set; }
|
||||
public bool AllowUserToChange { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user