Added tool selection for kerf width

This commit is contained in:
aj
2018-06-02 21:28:50 -04:00
parent e5f919a3e8
commit 0cded86d75
6 changed files with 225 additions and 80 deletions

14
CutToLength/Tool.cs Normal file
View 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;
}
}
}