using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Module.FireCtrl.ModBusTcp { /// /// 故障信息 /// public class MFaultInformation { /// /// 预留扩展低字节 /// public byte F_ObligateLow { get; set; } /// /// 预留扩展高字节 /// public byte F_ObligateHigh { get; set; } /// /// 防护区 /// public byte F_ProtectiveArea { get; set; } /// /// 设备类型 /// public byte F_DeviceType { get; set; } /// /// 设备编号 /// public byte F_DeviceNumber { get; set; } /// /// 故障码 /// public byte F_FaultCode { get; set; } } }