spc-kiosk-pb/Library/FluentFTP/Proxy/ProxyInfo.cs

15 lines
389 B
C#
Raw Normal View History

2019-06-16 05:12:09 +00:00
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; }
}
}