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

14 lines
229 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; }
}
}