mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
19 lines
397 B
C#
19 lines
397 B
C#
using Netch.Models;
|
|
|
|
namespace Netch.Servers
|
|
{
|
|
public class Trojan : Server
|
|
{
|
|
public override string Type { get; } = "Trojan";
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 伪装域名
|
|
/// </summary>
|
|
public string? Host { get; set; }
|
|
}
|
|
} |