Files
serein-flow/Serein.Proto.Modbus/ModbusRtuRequest.cs

16 lines
332 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Serein.Proto.Modbus
{
/// <summary>
/// Modbus RTU 请求实体(串口模式下无效)
/// </summary>
public sealed class ModbusRtuRequest : ModbusRequest
{
/// <summary>
/// 从站地址1~247
/// </summary>
public byte SlaveAddress { get; set; }
}
}