HKC/DM_Weight/Models/IpAndPort.cs

18 lines
366 B
C#

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