1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.Core/Models/Hosts/LocalProxy.cs

19 lines
337 B
C#
Raw Normal View History

2021-07-08 13:37:32 +03:00
namespace ProxySuper.Core.Models.Hosts
2021-05-14 14:07:19 +03:00
{
public class LocalProxy
{
public string Address { get; set; } = "127.0.0.1";
public int Port { get; set; } = 1080;
public LocalProxyType Type { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
2021-07-08 13:37:32 +03:00
2021-05-14 14:07:19 +03:00
}