23 lines
498 B
C#
23 lines
498 B
C#
namespace InspectionUI.RemoteControl.Interfaces
|
|
{
|
|
using System.Runtime.InteropServices;
|
|
|
|
[ComVisible(true)]
|
|
[Guid("7FAB7EB4-1FB8-4A9A-82A2-14A3CD993168")]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
|
|
public interface IFlowMessage
|
|
{
|
|
bool Completed { get; set; }
|
|
|
|
double M3H { get; set; }
|
|
|
|
int PumpNr { get; set; }
|
|
|
|
string RuleType { get; set; }
|
|
|
|
int ServoPosition { get; set; }
|
|
|
|
string Error { get; set; }
|
|
}
|
|
}
|