MoS2/Framework/MECF.Framework.RT.EquipmentLibrary/HardwareUnits/Chillers/IChiller.cs

10 lines
212 B
C#
Raw Normal View History

2026-06-15 10:56:30 +08:00
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Chillers
{
public interface IChiller
{
bool IsRunning { get; }
bool SetMainPowerOnOff(bool isOn, out string reason);
}
}