1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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; }
- }
- /// <summary>
- /// 类型名称
- /// </summary>
- public enum ActionTypeEnum
- {
- Connect,
- Collect,
- Write,
- Read,
- Upload,
- SelectNcProgram,
- StartNcProgram,
- DeleteNc,
- ToolList
- }
- }
|