mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-23 13:46:08 +03:00
18 lines
358 B
C#
18 lines
358 B
C#
using ProxySuper.Core.Services;
|
|
|
|
namespace ProxySuper.Core.Models.Projects
|
|
{
|
|
public partial class XraySettings
|
|
{
|
|
public string TrojanPassword { get; set; }
|
|
|
|
public string Trojan_TCP_ShareLink
|
|
{
|
|
get
|
|
{
|
|
return ShareLink.Build(XrayType.Trojan_TCP, this);
|
|
}
|
|
}
|
|
}
|
|
}
|