using HybirdFrameworkDriver.ModbusTcpMaster;
namespace Service.Fire.Msg;
public class FaultMsg
{
///
/// 主电故障
///
public ModbusProperty MainPowerFault { get; set; } = new(32768, start: 1, length: 1);
///
/// 备电故障
///
public ModbusProperty BackupFault { get; set; } = new(32768, start: 2, length: 2);
}