Files
CutList/SawCut/Nesting/Result.cs
2021-10-04 19:06:33 -04:00

17 lines
297 B
C#

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; }
}
}