123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.Collections.Generic;
- namespace IMCS.HeidenHain
- {
- public class RequestBody
- {
- public string MachineName
- { get; set; }
- public string ServerUrl
- { get; set; }
- public string Path
- { get; set; }
- public string Address
- { get; set; }
- public string Value
- { get; set; }
- public string Type
- { get; set; }
- public string CutterData
- { get; set; }
- }
- /// <summary>
- /// 类型名称
- /// </summary>
- public enum ActionTypeEnum
- {
- Connect,
- Collect,
- Write,
- Read,
- Upload,
- SelectNcProgram,
- StartNcProgram,
- DeleteNc,
- ToolList,
- ReadAndWriteTool,
- ReadProbeData
- }
- }
|