|
namespace InnovEnergy.Lib.Protocols.Modbus.Reflection.Attributes;
|
|
|
|
public class HoldingRegisterAttribute : ModbusRegisterAttribute
|
|
{
|
|
public HoldingRegisterAttribute(UInt16 address, TypeCode modbusType = TypeCode.UInt16) : base(address, modbusType) { }
|
|
}
|
|
|
|
|