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

14 lines
229 B
C#
Raw Normal View History

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; }
string Domain { get; set; }
}
}