Files
vms2016_kadisp/cVMS.NET_CS/Modbus/Attributes/ModbusAddressAttribute.cs
2024-11-26 20:15:16 +09:00

19 lines
405 B
C#

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;
}
}
}