26 lines
610 B
C#
26 lines
610 B
C#
namespace InspectionUI.RemoteControl.Messages
|
|
{
|
|
using InspectionUI.RemoteControl.Interfaces;
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[ComVisible(true)]
|
|
[Guid("915C80BE-CE94-4FA4-BED6-D190377F2E52")]
|
|
[ClassInterface(ClassInterfaceType.None)]
|
|
public class FlowMessage : IFlowMessage
|
|
{
|
|
public Boolean Completed { get; set; }
|
|
|
|
public Double M3H { get; set; }
|
|
|
|
public Int32 PumpNr { get; set; }
|
|
|
|
public String RuleType { get; set; }
|
|
|
|
public Int32 ServoPosition { get; set; }
|
|
|
|
public String Error { get; set; }
|
|
}
|
|
}
|