From 92ec19358b5a22e234621669ec525e99012157df Mon Sep 17 00:00:00 2001 From: syc_zhaoqianyan Date: Tue, 24 Jun 2025 14:17:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E4=B8=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DeviceConnectConfig.cs | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 share/Seyounth.Auto.Hs.Runtime/DeviceConnectConfig.cs 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; } + } +}