1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-17 07:03:14 +03:00
ProxySU/ProxySuper.Core/Models/Projects/V2raySettings_Trojan.cs

18 lines
358 B
C#
Raw Normal View History

2021-05-22 11:12:26 +08:00
using ProxySuper.Core.Services;
2021-05-13 09:58:45 +08:00
2021-05-14 19:07:19 +08:00
namespace ProxySuper.Core.Models.Projects
2021-05-13 09:58:45 +08:00
{
2021-08-20 11:52:45 +08:00
public partial class V2raySettings
2021-05-13 09:58:45 +08:00
{
public string TrojanPassword { get; set; }
2021-05-22 11:12:26 +08:00
public string Trojan_TCP_ShareLink
{
get
{
2021-08-20 11:52:45 +08:00
return ShareLink.Build(RayType.Trojan_TCP, this);
2021-05-22 11:12:26 +08:00
}
}
2021-05-13 09:58:45 +08:00
}
}