Sic.Framework/MECF.Framework.Common/MECF/Framework/Common/OperationCenter/IInterlockChecker.cs

8 lines
142 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace MECF.Framework.Common.OperationCenter
{
public interface IInterlockChecker
{
bool CanDo(out string reason, object[] args);
}
}