using System; using System.Collections.Generic; [Serializable] public struct Config { public List NVR { get; set; } public List 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; } }