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; } public string DeviationValue { get; set; } } /// /// 类型名称 /// public enum ActionTypeEnum { Connect, Collect, Write, Read, Upload, SelectNcProgram, StartNcProgram, DeleteNc, ToolList, ReadAndWriteTool, ReadProbeData, WriteDeviationValue } }