SFTPDeviceBody.cs 384 B

12345678910111213141516171819
  1. 
  2. namespace IMCS.CCS.body
  3. {
  4. public class SFTPDeviceBody
  5. {
  6. public string Ip
  7. { get; set; }
  8. public string Port
  9. { get; set; }
  10. public string UserName
  11. { get; set; }
  12. public string Password
  13. { get; set; }
  14. public string Path
  15. { get; set; }
  16. public string NcExtendPath
  17. { get; set; }
  18. }
  19. }