1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-17 23:13:18 +03:00

21 lines
354 B
C#
Raw Normal View History

2021-08-16 18:25:43 +08:00
using Renci.SshNet;
namespace ProxySuper.Core.Models.Hosts
2021-05-14 19:07:19 +08:00
{
public class LocalProxy
{
public string Address { get; set; } = "127.0.0.1";
public int Port { get; set; } = 1080;
2021-08-16 18:25:43 +08:00
public ProxyTypes Type { get; set; }
2021-05-14 19:07:19 +08:00
public string UserName { get; set; }
public string Password { get; set; }
}
2021-07-08 18:37:32 +08:00
2021-05-14 19:07:19 +08:00
}