mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Pack python env to zip
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
11
Wox.Plugin/IHttpProxy.cs
Normal file
11
Wox.Plugin/IHttpProxy.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ namespace Wox.Plugin
|
||||
/// </summary>
|
||||
public IPublicAPI API { get; set; }
|
||||
|
||||
public HttpProxy Proxy { get; set; }
|
||||
public IHttpProxy Proxy { get; set; }
|
||||
|
||||
#region Legacy APIs
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="AllowedLanguage.cs" />
|
||||
<Compile Include="HttpProxy.cs" />
|
||||
<Compile Include="IHttpProxy.cs" />
|
||||
<Compile Include="IPlugin.cs" />
|
||||
<Compile Include="IPublicAPI.cs" />
|
||||
<Compile Include="ISettingProvider.cs" />
|
||||
|
||||
Reference in New Issue
Block a user