1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySuper.Core/Models/Projects/XraySettings.cs

24 lines
515 B
C#
Raw Normal View History

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