ConnectDeviceBody.cs 446 B

123456789101112131415161718192021
  1. namespace IMCS.Device
  2. {
  3. public class ConnectDeviceBody
  4. {
  5. /// <summary>
  6. /// IP
  7. /// </summary>
  8. public string Ip
  9. { get; set; }
  10. public int Port
  11. { get; set; }
  12. public string UserName
  13. { get; set; }
  14. public string Password
  15. { get; set; }
  16. public string ServerUrl
  17. { get; set; }
  18. public string ProtocolType
  19. { get; set; }
  20. }
  21. }