123456789101112131415161718192021 |
- namespace IMCS.Device
- {
- public class ConnectDeviceBody
- {
- /// <summary>
- /// IP
- /// </summary>
- public string Ip
- { get; set; }
- public int Port
- { get; set; }
- public string UserName
- { get; set; }
- public string Password
- { get; set; }
- public string ServerUrl
- { get; set; }
- public string ProtocolType
- { get; set; }
- }
- }
|