17 lines
332 B
C#
17 lines
332 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SawCut.Nesting
|
|
{
|
|
public class Result
|
|
{
|
|
public Result()
|
|
{
|
|
ItemsNotUsed = new List<BinItem>();
|
|
Bins = new List<Bin>();
|
|
}
|
|
|
|
public List<BinItem> ItemsNotUsed { get; set; }
|
|
|
|
public List<Bin> Bins { get; set; }
|
|
}
|
|
} |