From 452b9b63ada7ef220952412613552d36ed477adc Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期一, 19 五月 2025 17:30:29 +0800 Subject: [PATCH] 测试,修复部分数据表问题 --- AppStart/Config.cs | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/AppStart/Config.cs b/AppStart/Config.cs index ad0217f..cea2e11 100644 --- a/AppStart/Config.cs +++ b/AppStart/Config.cs @@ -21,6 +21,16 @@ public string TCPServerIP { get; set; } public int TCPServerPort { get; set; } public List<Area> Areas { get; set; } + public List<Snap> Snap { get; set; } + public string CaptureUrl { get; set; } } + public class Snap { + public string Ip { get; set; } + public int Port { get; set; } + public string Name { get; set; } + public string Pwd { get; set; } + } + + } -- Gitblit v1.9.1