initial commit
This commit is contained in:
22
cVMS.NET_CS/Modbus/Configures/TcpConfigure.cs
Normal file
22
cVMS.NET_CS/Modbus/Configures/TcpConfigure.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace vmsnet.Configures
|
||||
{
|
||||
public class TcpConfigure
|
||||
{
|
||||
public string Ip { get; set; }
|
||||
public int Port { get; set; }
|
||||
|
||||
public TcpConfigure() { }
|
||||
|
||||
public TcpConfigure(string ip, int port)
|
||||
{
|
||||
Ip = ip;
|
||||
Port = port;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user