Moved nesting to SawCut library

This commit is contained in:
AJ
2021-10-04 19:06:33 -04:00
parent 793c6173b1
commit 44f3cbfa81
18 changed files with 186 additions and 86 deletions

9
SawCut/BinItem.cs Normal file
View File

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