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>
|
2021-05-15 11:45:36 +03:00
|
|
|
|
public int VLESS_gRPC_Port { get; set; }
|
2021-05-13 04:58:45 +03:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// grpc service name
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VLESS_gRPC_ServiceName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|