PowerToys/Wox.Infrastructure/UserSettings/HttpProxy.cs

11 lines
309 B
C#
Raw Normal View History

2016-06-19 23:18:08 +08:00
namespace Wox.Infrastructure.UserSettings
2014-07-18 20:00:55 +08:00
{
2016-06-19 23:18:08 +08:00
public class HttpProxy
2014-07-18 20:00:55 +08:00
{
2016-06-19 23:18:08 +08:00
public bool Enabled { get; set; } = false;
public string Server { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
2014-07-18 20:00:55 +08:00
}
}