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_VLESS.cs

42 lines
944 B
C#
Raw Normal View History

2021-05-13 04:58:45 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-05-14 14:07:19 +03:00
namespace ProxySuper.Core.Models.Projects
2021-05-13 04:58:45 +03:00
{
public partial class XraySettings
{
/// <summary>
/// websocket path
/// </summary>
public string VLESS_WS_Path { get; set; }
/// <summary>
/// kcp seed
/// </summary>
public string VLESS_KCP_Seed { get; set; }
/// <summary>
/// kcp type
/// </summary>
public string VLESS_KCP_Type { get; set; }
/// <summary>
/// kcp port
/// </summary>
public int VLESS_KCP_Port { get; set; }
/// <summary>
/// grpc port
/// </summary>
public string VLESS_gRPC_Port { get; set; }
/// <summary>
/// grpc service name
/// </summary>
public string VLESS_gRPC_ServiceName { get; set; }
}
}