PowerToys/Wox.Plugin/IHttpProxy.cs
2014-07-18 20:00:55 +08:00

11 lines
224 B
C#

namespace Wox.Plugin
{
public interface IHttpProxy
{
bool Enabled { get; }
string Server { get; }
int Port { get; }
string UserName { get; }
string Password { get; }
}
}