2023-05-04 07:32:35 +00:00
|
|
|
|
2023-04-20 13:03:13 +00:00
|
|
|
namespace InnovEnergy.Lib.Protocols.Modbus.Reflection.Attributes;
|
|
|
|
|
|
|
|
public class ModbusBooleanAttribute : ModbusAttribute
|
|
|
|
{
|
2023-05-04 07:32:35 +00:00
|
|
|
protected ModbusBooleanAttribute(UInt16 address) : base(address, TypeCode.Boolean)
|
2023-04-20 13:03:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|