mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
24 lines
515 B
C#
24 lines
515 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 class XraySettings : V2raySettings
|
|
{
|
|
/// <summary>
|
|
/// vless xtls shareLink
|
|
/// </summary>
|
|
public string VLESS_TCP_XTLS_ShareLink
|
|
{
|
|
get
|
|
{
|
|
return ShareLink.Build(RayType.VLESS_TCP_XTLS, this);
|
|
}
|
|
}
|
|
}
|
|
}
|