Pack python env to zip

This commit is contained in:
qianlifeng
2014-07-18 20:00:55 +08:00
parent 7be02731ee
commit 7b4d6ba57e
1022 changed files with 2670 additions and 246394 deletions

11
Wox.Plugin/IHttpProxy.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace Wox.Plugin
{
public interface IHttpProxy
{
bool Enabled { get; }
string Server { get; }
int Port { get; }
string UserName { get; }
string Password { get; }
}
}