RequestBody.cs 713 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Collections.Generic;
  2. namespace IMCS.HeidenHain
  3. {
  4. public class RequestBody
  5. {
  6. public string MachineName
  7. { get; set; }
  8. public string ServerUrl
  9. { get; set; }
  10. public string Path
  11. { get; set; }
  12. public string Address
  13. { get; set; }
  14. public string Value
  15. { get; set; }
  16. public string Type
  17. { get; set; }
  18. }
  19. /// <summary>
  20. /// 类型名称
  21. /// </summary>
  22. public enum ActionTypeEnum
  23. {
  24. Connect,
  25. Collect,
  26. Write,
  27. Read,
  28. Upload,
  29. SelectNcProgram,
  30. StartNcProgram,
  31. DeleteNc,
  32. ToolList,
  33. SzbOffset
  34. }
  35. }