MoS2/Framework/MECF.Framework.RT.EquipmentLibrary/HardwareUnits/Chillers/IChiller.cs
2026-06-15 10:56:30 +08:00

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);
}
}