1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySuper.Core/Models/Projects/XraySettings_Trojan.cs

18 lines
358 B
C#
Raw Normal View History

2021-05-22 06:12:26 +03:00
using ProxySuper.Core.Services;
2021-05-13 04:58:45 +03:00
2021-05-14 14:07:19 +03:00
namespace ProxySuper.Core.Models.Projects
2021-05-13 04:58:45 +03:00
{
public partial class XraySettings
{
public string TrojanPassword { get; set; }
2021-05-22 06:12:26 +03:00
public string Trojan_TCP_ShareLink
{
get
{
return ShareLink.Build(XrayType.Trojan_TCP, this);
}
}
2021-05-13 04:58:45 +03:00
}
}