2021-02-25 04:59:06 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2021-03-17 06:58:56 +03:00
|
|
|
|
namespace ProxySU_Core.Models.Developers
|
2021-02-25 04:59:06 +03:00
|
|
|
|
{
|
|
|
|
|
public interface IParameters
|
|
|
|
|
{
|
|
|
|
|
int Port { get; set; }
|
|
|
|
|
|
2021-04-18 13:11:35 +03:00
|
|
|
|
int VLESS_gRPC_Port { get; set; }
|
|
|
|
|
|
|
|
|
|
int VLESS_KCP_Port { get; set; }
|
|
|
|
|
|
2021-04-17 06:50:31 +03:00
|
|
|
|
int VMESS_KCP_Port { get; set; }
|
2021-04-05 05:22:43 +03:00
|
|
|
|
|
|
|
|
|
int ShadowSocksPort { get; set; }
|
|
|
|
|
|
2021-02-25 04:59:06 +03:00
|
|
|
|
string Domain { get; set; }
|
2021-03-27 17:18:56 +03:00
|
|
|
|
|
|
|
|
|
List<XrayType> Types { get; set; }
|
2021-02-25 04:59:06 +03:00
|
|
|
|
}
|
|
|
|
|
}
|