10 lines
212 B
C#
10 lines
212 B
C#
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Chillers
|
|
{
|
|
public interface IChiller
|
|
{
|
|
bool IsRunning { get; }
|
|
|
|
bool SetMainPowerOnOff(bool isOn, out string reason);
|
|
}
|
|
}
|