using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UAS_DeviceMonitor.Entity { class Polling { private string deviceCode; private string iP; private string port; private int interval; private bool enable; public string DeviceCode { get { return deviceCode; } set { deviceCode = value; } } public string IP { get { return iP; } set { iP = value; } } public string Port { get { return port; } set { port = value; } } public int Interval { get { return interval; } set { interval = value; } } public bool Enable { get { return enable; } set { enable = value; } } } }