RequestBody.cs 694 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. }
  34. }