1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySU_Core/ViewModels/Developers/IParameters.cs
2021-02-25 09:59:06 +08:00

14 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProxySU_Core.ViewModels.Developers
{
public interface IParameters
{
int Port { get; set; }
string Domain { get; set; }
}
}