9 lines
143 B
C#
9 lines
143 B
C#
namespace Yavsc.Abstract.Workflow
|
|
{
|
|
public interface IMayBeFixable
|
|
{
|
|
bool Fixable { get; }
|
|
|
|
void TryAndFix();
|
|
}
|
|
} |