Flow.Launcher/Wox.Infrastructure/UserSettings/HttpProxy.cs
2020-04-21 19:12:17 +10:00

11 lines
No EOL
319 B
C#

namespace Flow.Launcher.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; }
}
}