Files
hsuco_cctv_getdata/HSUCO_CCTV_GetData/DataModel.cs
2023-03-14 17:36:34 +09:00

29 lines
721 B
C#

using System;
using System.Collections.Generic;
[Serializable]
public struct Config
{
public List<Information> NVR { get; set; }
public List<Information> CCTV { get; set; }
public int NVR_DelayTime { get; set; }
public int CCTV_DelayTime { get; set; }
public struct Information
{
public string Name { get; set; }
public string IpAddress { get; set; }
}
}
public struct DetailData
{
public string ServerName { get; set; }
public string ServerIP { get; set; }
public string Name { get; set; }
public string IP { get; set; }
public string ID { get; set; }
public string Password { get; set; }
}