using System.Net; namespace FluentFTP.Proxy { /// POCO holding proxy informations public class ProxyInfo { /// Proxy host name public string Host { get; set; } /// Proxy port public int Port { get; set; } /// Proxy login credentials public NetworkCredential Credentials { get; set; } } }