BOB/DeviceCommand/Device/ZXKS.cs
2025-11-20 10:04:58 +08:00

25 lines
515 B
C#

using Common.Attributes;
using DeviceCommand.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceCommand.Device
{
[BOBCommand]
public class ZXKS:ModbusTcp
{
public ZXKS(string IpAddress, int port, int SendTimeout, int ReceiveTimeout)
{
ConfigureDevice(IpAddress, port, SendTimeout, ReceiveTimeout);
}
public ZXKS()
{
}
}
}