mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
10 lines
238 B
C#
10 lines
238 B
C#
|
|
namespace Wox.Plugin
|
|||
|
|
{
|
|||
|
|
public class HttpProxy
|
|||
|
|
{
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
public int Port { get; set; }
|
|||
|
|
public string UserName { get; set; }
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|