DeviceStatus.cs 714 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace UAS_PLCDataReader.Entity
  6. {
  7. class DeviceStatus
  8. {
  9. public static string Running
  10. {
  11. get
  12. {
  13. return "running";
  14. }
  15. }
  16. public static string Stopped
  17. {
  18. get
  19. {
  20. return "stopped";
  21. }
  22. }
  23. public static string Noanswer
  24. {
  25. get
  26. {
  27. return "noanswer";
  28. }
  29. }
  30. public static string Disconnect
  31. {
  32. get
  33. {
  34. return "disconnect";
  35. }
  36. }
  37. }
  38. }