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