mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
23 lines
474 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|