using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Seyounth.Auto.Hs.Runtime
{
///
/// tcp/ip 设备连接配置
///
public class DeviceConnectConfig
{
///
/// 设备唯一标识
///
public int Id { get; set; }
///
/// IP
///
public string IP { get; set; }
///
/// 端口
///
public int Port { get; set; }
}
}