using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOB_UT_NEXT { public class FtpActConf : GenActConf { /// /// IP / DNS name del ServerAddr FTP /// public string ServerAddr { get; set; } = "localhost"; /// /// Porta FTP, default 21 /// public int ServerPort { get; set; } = 21; /// /// User connessione FTP /// public string ConnUser { get; set; } = ""; /// /// PWD connessione FTP /// public string ConnPasswd { get; set; } = ""; /// /// Certificato FTP (raw) x accettazione implicita autofirmati /// public string RawCert { get; set; } = ""; /// /// Skip del controllo certificato FTP /// public bool SkipCert { get; set; } = true; } }