RequestBody.cs 735 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ApplyFeeding,
  32. DeleteNc,
  33. ToolList,
  34. SzbOffset
  35. }
  36. }