feat: add IConfigurablePostProcessor interface and implement in Cincinnati post

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-31 12:02:07 -04:00
parent 568539d5b1
commit 159b54a1ec
3 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace OpenNest
{
public interface IConfigurablePostProcessor : IPostProcessor
{
object Config { get; }
void SaveConfig();
}
}