Sic.Framework/MECF.Framework.RT.Equipment.../HardwareUnits/Aligners/HiWinAligner/HwAlignerMessage.cs

16 lines
380 B
C#
Raw Normal View History

using MECF.Framework.Common.Communications;
2023-04-13 11:51:03 +08:00
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Aligners.HiWinAligner
2023-04-13 11:51:03 +08:00
{
public class HwAlignerGuideMessage : BinaryMessage
2023-04-13 11:51:03 +08:00
{
public byte DeviceAddress { get; set; }
public byte FunctionCode { get; set; }
public byte Length { get; set; }
public byte[] Data { get; set; }
2023-04-13 11:51:03 +08:00
}
}