1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 21:56:08 +03:00
ProxySU/ProxySU_Core/Models/Developers/IParameters.cs
2021-04-17 11:50:31 +08:00

20 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProxySU_Core.Models.Developers
{
public interface IParameters
{
int Port { get; set; }
int VMESS_KCP_Port { get; set; }
int ShadowSocksPort { get; set; }
string Domain { get; set; }
List<XrayType> Types { get; set; }
}
}