using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DeviceCenter { class Device { public string name { get; set; } public string ip { get; set; } public string status { get; set; } } }