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