RequestBody.cs 798 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. public string CutterData
  19. { get; set; }
  20. }
  21. /// <summary>
  22. /// 类型名称
  23. /// </summary>
  24. public enum ActionTypeEnum
  25. {
  26. Connect,
  27. Collect,
  28. Write,
  29. Read,
  30. Upload,
  31. SelectNcProgram,
  32. StartNcProgram,
  33. DeleteNc,
  34. ToolList,
  35. ReadAndWriteTool,
  36. ReadProbeData
  37. }
  38. }