using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOB_UT_NEXT.Config.Special { public class FtpDto { #region Public Properties /// /// indirizzo server FTP (IP/URI) /// public string Server { get; set; } = ""; /// /// Utente x connessione FTP /// public string User { get; set; } = ""; /// /// Password x connessione FTP /// public string Passwd { get; set; } = ""; /// /// Indica se aggiungere header ai CSV trasmessi via FTP /// public bool CsvAddHeader { get; set; } = true; /// /// Certificato (firma) per connessione FTP /// public string CertValue { get; set; } = ""; /// /// Indica se saltare la validazione del certificato FTP /// public bool SkipCert { get; set; } = true; /// /// Directory di lavoro Remota /// public string DirRemote { get; set; } = ""; /// /// Directory di lavoro Locale /// public string DirLocal { get; set; } = ""; #endregion Public Properties } }