| 12345678910111213141516171819 | namespace IMCS.Device.body{    public class SFTPDeviceBody    {        public string Ip        { get; set; }        public string Port        { get; set; }        public string UserName        { get; set; }        public string Password        { get; set; }        public string Path        { get; set; }        public string NcExtendPath        { get; set; }    }}
 |