using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProxySuper.Core.Models { public partial class XraySettings { /// /// vmess websocket path /// public string VMESS_WS_Path { get; set; } /// /// mvess tcp path /// public string VMESS_TCP_Path { get; set; } /// /// vmess kcp seed /// public string VMESS_KCP_Seed { get; set; } /// /// vmess kcp type /// public string VMESS_KCP_Type { get; set; } /// /// vmess kcp port /// public int VMESS_KCP_Port { get; set; } } }