Cleanup classes.

This commit is contained in:
aj
2018-05-31 22:26:55 -04:00
parent c3f24df75e
commit 8967aa8b55
5 changed files with 102 additions and 90 deletions

9
CutToLength/BinItem.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace CutToLength
{
public class BinItem
{
public string Name { get; set; }
public double Length { get; set; }
}
}