1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-29 08:36:08 +03:00
ProxySU/ProxySU_Core/Models/Developers/IParameters.cs
2021-05-08 11:45:46 +08:00

16 lines
267 B
C#

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