29 lines
721 B
C#
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; }
|
|
}
|