1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-27 15:46:07 +03:00
ProxySU/ProxySU_Core/Models/Developers/IParameters.cs

16 lines
273 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; }
2021-03-27 17:18:56 +03:00
List<XrayType> Types { get; set; }
2021-02-25 04:59:06 +03:00
}
}