using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace vmsnet.Attributes { [AttributeUsage(AttributeTargets.Field)] public class ModbusAddressAttribute : Attribute { public ushort Address { get; } public ModbusAddressAttribute(ushort address) { Address = address; } } }