mirror of
https://github.com/netchx/netch.git
synced 2026-03-24 18:39:47 +08:00
22 lines
404 B
C#
22 lines
404 B
C#
using Netch.Models;
|
|
|
|
namespace Netch.ServerEx.Trojan
|
|
{
|
|
public class Trojan : Server
|
|
{
|
|
public Trojan()
|
|
{
|
|
Type = "Trojan";
|
|
}
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// 伪装域名
|
|
/// </summary>
|
|
public string Host { get; set; }
|
|
}
|
|
} |