Innovenergy_trunk/csharp/Lib/Protocols/Modbus/Reflection/Attributes/AddressOffsetAttribute.cs

11 lines
292 B
C#
Raw Normal View History

2023-05-04 07:32:35 +00:00
using static System.AttributeTargets;
namespace InnovEnergy.Lib.Protocols.Modbus.Reflection.Attributes;
[AttributeUsage(Class | Struct)]
public class AddressOffsetAttribute : Attribute
{
public Int32 Offset { get; }
public AddressOffsetAttribute(Int32 offset) => Offset = offset;
}