22 lines
478 B
C#
22 lines
478 B
C#
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; }
|
|
}
|
|
}
|