mirror of
https://github.com/netchx/netch.git
synced 2026-05-11 23:45:06 +08:00
23 lines
490 B
C#
23 lines
490 B
C#
using Netch.Models;
|
|
|
|
namespace Netch.Servers
|
|
{
|
|
public class TrojanServer : Server
|
|
{
|
|
public override string Type { get; } = "Trojan";
|
|
public override string MaskedData()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 伪装域名
|
|
/// </summary>
|
|
public string? Host { get; set; }
|
|
}
|
|
} |