using System.Net; namespace FluentFTP.Proxy { /// POCO holding proxy information 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; } } }