mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
11 lines
309 B
C#
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; }
|
|
}
|
|
} |