using System; using System.Collections.Generic; namespace HSUCO_Server_Monitoring { [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 enum MessageSender { NVR, CCTV } public enum StatusResult { Success, Fail, Inspection } }