123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System.Collections.Generic;
- namespace Kede
- {
- public class RequestBody
- {
- public string UserName
- { get; set; }
- public string Password
- { get; set; }
- public string ServerUrl
- { get; set; }
- public string Type
- { get; set; }
- public string Path
- { get; set; }
- public List<string> Addresses
- { get; set; } = new List<string>();
- public List<string> Values
- { get; set; }
- public string LocalFilePath { get; set; }
- public string RemoteFilePath { get; set; }
- public string Port { get; set; }
- }
- /// <summary>
- /// 类型名称
- /// </summary>
- public enum ActionTypeEnum
- {
- Connect,
- Write,
- Read,
- ToolList,
- Collect,
- Upload,
- SelectNc,
- StartNcProgram
- }
- }
|