mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
22 lines
379 B
C#
22 lines
379 B
C#
using Netch.Models;
|
|
|
|
namespace Netch.ServerEx.Socks5
|
|
{
|
|
public class Socks5 : Server
|
|
{
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password;
|
|
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
public string Username;
|
|
|
|
public Socks5()
|
|
{
|
|
Type = "Socks5";
|
|
}
|
|
}
|
|
} |