95f2b208c9
- inizio modifica x inclusione calcolo MD5 e import DB Ricette
45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT
|
|
{
|
|
public class FtpActConf : GenActConf
|
|
{
|
|
|
|
/// <summary>
|
|
/// IP / DNS name del ServerAddr FTP
|
|
/// </summary>
|
|
public string ServerAddr { get; set; } = "localhost";
|
|
|
|
/// <summary>
|
|
/// Porta FTP, default 21
|
|
/// </summary>
|
|
public int ServerPort { get; set; } = 21;
|
|
|
|
/// <summary>
|
|
/// User connessione FTP
|
|
/// </summary>
|
|
public string ConnUser { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// PWD connessione FTP
|
|
/// </summary>
|
|
public string ConnPasswd { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Certificato FTP (raw) x accettazione implicita autofirmati
|
|
/// </summary>
|
|
public string RawCert { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Skip del controllo certificato FTP
|
|
/// </summary>
|
|
public bool SkipCert { get; set; } = true;
|
|
|
|
}
|
|
|
|
}
|