1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_PLCDataReader.Entity
- {
- class DeviceStatus
- {
- private static string running;
- private static string stopped;
- private static string noanswer;
- private static string disconnect;
- 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";
- }
- }
- }
- }
|