初始化
This commit is contained in:
21
Commonlib/MonitorData.cs
Normal file
21
Commonlib/MonitorData.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Commonlib
|
||||
{
|
||||
public class MonitorData
|
||||
{
|
||||
public string? Handler { get; set; }
|
||||
public List<MonitorEndPoint?> DataList { get; set; }
|
||||
}
|
||||
public class MonitorEndPoint
|
||||
{
|
||||
public string? IPAddress { get; set; }
|
||||
public int Port { get; set; }
|
||||
|
||||
public string AddDateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user