123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_PLCDataReader.Entity
- {
- class DeviceStatus
- {
- public static string Running
- {
- get
- {
- return "running";
- }
- }
- public static string Stopped
- {
- get
- {
- return "stopped";
- }
- }
- public static string Noanswer
- {
- get
- {
- return "noanswer";
- }
- }
- public static string Disconnect
- {
- get
- {
- return "disconnect";
- }
- }
- }
- }
|