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