Multi-bin nesting

This commit is contained in:
AJ
2021-10-05 09:03:14 -04:00
parent 25b3cdcfdc
commit 28d53e6d38
14 changed files with 439 additions and 175 deletions

11
SawCut/MultiBin.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace SawCut
{
public class MultiBin
{
public int Quantity { get; set; } = 1;
public double Length { get; set; }
public int Priority { get; set; }
}
}