1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-10 04:30:54 +00:00
ProxySU/ProxySuper.Core/Models/Hosts/LocalProxy.cs
2021-08-16 18:25:43 +08:00

20 lines
354 B
C#

using Renci.SshNet;
namespace ProxySuper.Core.Models.Hosts
{
public class LocalProxy
{
public string Address { get; set; } = "127.0.0.1";
public int Port { get; set; } = 1080;
public ProxyTypes Type { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}