SIC-12/Framework/MECF.Framework.RT.EquipmentLibrary/HardwareUnits/MFCs/IMfc.cs

8 lines
178 B
C#
Raw Normal View History

namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.MFCs
{
public interface IMfc
{
bool Ramp(double flowSetPoint, int time, out string reason);
}
}