mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-23 05:36:08 +03:00
25 lines
457 B
C#
25 lines
457 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProxySuper.Core.Models.Hosts
|
|||
|
{
|
|||
|
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; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|