using HybirdFrameworkDriver.ModbusTcpMaster;
namespace Service.FireControl.Msg;
///
/// 3.2数据列表0x03
///
public class Subzone3
{
#region
///
/// 总报警个数
///
public ModbusProperty TotalNumberOfAlarms { get; set; } = new(0x0001);
///
/// 总故障个数
///
public ModbusProperty TotalNumberOfFailures { get; set; } = new(0x0002);
///
/// 总探测器个数
///
public ModbusProperty TotalNumberOfDetectors { get; set; } = new(0x0003);
#endregion
}