10 lines
159 B
C#
10 lines
159 B
C#
namespace OpenNest
|
|
{
|
|
public interface IConfigurablePostProcessor : IPostProcessor
|
|
{
|
|
object Config { get; }
|
|
|
|
void SaveConfig();
|
|
}
|
|
}
|