diff --git a/share/Seyounth.Auto.Hs.Runtime/DeviceConnectConfig.cs b/share/Seyounth.Auto.Hs.Runtime/DeviceConnectConfig.cs new file mode 100644 index 0000000..59507bb --- /dev/null +++ b/share/Seyounth.Auto.Hs.Runtime/DeviceConnectConfig.cs @@ -0,0 +1,29 @@ +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; } + } +}