1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-20 16:33:19 +03:00

16 lines
267 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; }
string Domain { get; set; }
2021-03-27 22:18:56 +08:00
2021-05-08 11:45:46 +08:00
List<int> FreePorts { get; }
2021-02-25 09:59:06 +08:00
}
}