This commit is contained in:
Paul Schneider 2018-04-14 10:58:16 +02:00
commit 7c2c2621f0
7 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,9 @@
namespace Yavsc.Abstract.Workflow
{
public interface IMayBeFixable
{
bool Fixable { get; }
void TryAndFix();
}
}