mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Refactoring proxy, part 2
This commit is contained in:
11
Wox.Infrastructure/UserSettings/HttpProxy.cs
Normal file
11
Wox.Infrastructure/UserSettings/HttpProxy.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user