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

16
SawCut/Nesting/Result.cs Normal file
View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace SawCut.Nesting
{
public class Result
{
public Result()
{
ItemsNotUsed = new List<BinItem>();
}
public List<BinItem> ItemsNotUsed { get; set; }
public List<Bin> Bins { get; set; }
}
}