spc-kiosk-pb/Library/FluentFTP/Proxy/ProxyInfo.cs
2019-06-16 14:12:09 +09:00

15 lines
389 B
C#

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