1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-21 08:53:17 +03:00

24 lines
515 B
C#
Raw Normal View History

2021-08-20 11:52:45 +08:00
using ProxySuper.Core.Services;
2021-06-17 18:54:07 +08:00
using System;
2021-05-13 09:58:45 +08:00
using System.Collections.Generic;
2021-07-12 17:58:51 +08:00
using System.Linq;
2021-08-20 11:52:45 +08:00
using System.Text;
using System.Threading.Tasks;
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 class XraySettings : V2raySettings
2021-05-13 09:58:45 +08:00
{
2021-08-19 17:54:23 +08:00
/// <summary>
2021-08-20 11:52:45 +08:00
/// vless xtls shareLink
2021-08-19 17:54:23 +08:00
/// </summary>
2021-08-20 11:52:45 +08:00
public string VLESS_TCP_XTLS_ShareLink
2021-06-17 18:54:07 +08:00
{
get
{
2021-08-20 11:52:45 +08:00
return ShareLink.Build(RayType.VLESS_TCP_XTLS, this);
2021-05-13 09:58:45 +08:00
}
}
}
}