Flow.Launcher/Flow.Launcher.Infrastructure/UserSettings/HttpProxy.cs
2020-04-21 21:27:02 +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; }
}
}