1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.Core/Models/Projects/XraySettings_Trojan.cs
next-autumn 5f209b7c1d save
2021-05-22 11:12:26 +08:00

23 lines
474 B
C#

using ProxySuper.Core.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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);
}
}
}
}