mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
24 lines
443 B
C#
24 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ProxySU_Core.Models.Developers
|
|
{
|
|
public interface IParameters
|
|
{
|
|
int Port { get; set; }
|
|
|
|
int VLESS_gRPC_Port { get; set; }
|
|
|
|
int VLESS_KCP_Port { get; set; }
|
|
|
|
int VMESS_KCP_Port { get; set; }
|
|
|
|
int ShadowSocksPort { get; set; }
|
|
|
|
string Domain { get; set; }
|
|
|
|
List<XrayType> Types { get; set; }
|
|
}
|
|
}
|