mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
11 lines
No EOL
319 B
C#
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; }
|
|
}
|
|
} |