1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-21 17:03:17 +03:00

24 lines
443 B
C#
Raw Normal View History

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