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