| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 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;
- }
- }
- }
- }
|