PowerToys/Wox.Plugin/HttpProxy.cs
2014-07-10 18:39:04 +08:00

10 lines
238 B
C#

namespace Wox.Plugin
{
public class HttpProxy
{
public string Address { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}