using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { /// /// 记录系统中网口通信中用到的ip与端口号 /// public class IpAndPort { public string Ip { get; set; } public int Port { get; set; } } }