You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
374 B

using HybirdFrameworkDriver.ModbusTcpMaster;
namespace Service.FireControl.Msg;
public class TemperatureHumidity
{
/// <summary>
/// 温度
/// </summary>
public ModbusProperty<short> Temperature { get; set; } = new(0x0000);
/// <summary>
/// 湿度
/// </summary>
public ModbusProperty<short> Humidity { get; set; } = new(0x0001);
}