using System.Collections.Generic; namespace OpenNest.Engine.Strategies { public interface IFillStrategy { string Name { get; } NestPhase Phase { get; } int Order { get; } List Fill(FillContext context); } }