15 lines
285 B
C#
15 lines
285 B
C#
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;
|
|
}
|
|
}
|
|
}
|