PowerToys/Wox.Infrastructure/UserSettings/HttpProxy.cs
2016-06-19 16:22:45 +01:00

11 lines
309 B
C#

namespace Wox.Infrastructure.UserSettings
{
public class HttpProxy
{
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; }
}
}