using System;
namespace OpenNest;
/// Display metadata plus a fresh-instance factory for one registered whole-job engine.
public class NestingEngineInfo
{
public NestingEngineInfo(string name, string description, Func factory)
{
Name = name;
Description = description;
Factory = factory;
}
public string Name { get; }
public string Description { get; }
public Func Factory { get; }
}