mirror of
https://github.com/proxysu/ProxySU.git
synced 2025-04-11 05:00:58 +00:00
17 lines
358 B
C#
17 lines
358 B
C#
using ProxySuper.Core.Services;
|
|
|
|
namespace ProxySuper.Core.Models.Projects
|
|
{
|
|
public partial class V2raySettings
|
|
{
|
|
public string TrojanPassword { get; set; }
|
|
|
|
public string Trojan_TCP_ShareLink
|
|
{
|
|
get
|
|
{
|
|
return ShareLink.Build(RayType.Trojan_TCP, this);
|
|
}
|
|
}
|
|
}
|
|
}
|