Files
NewsCrawler/FluentFTP/Proxy/ProxyInfo.cs
2018-01-02 01:11:53 +09:00

15 lines
387 B
C#

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