using System.Collections.Generic; namespace SawCut.Nesting { public class Result { public Result() { ItemsNotUsed = new List(); Bins = new List(); } public List ItemsNotUsed { get; set; } public List Bins { get; set; } } }