10 lines
249 B
C#
10 lines
249 B
C#
namespace Inno.Communication.TCP
|
|
{
|
|
public class TcpConnectionItem
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public TcpConnectionItem(string host, int port) { Host = host; Port = port; }
|
|
}
|
|
}
|