mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-23 13:46:08 +03:00
16 lines
273 B
C#
16 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ProxySU_Core.Models.Developers
|
|
{
|
|
public interface IParameters
|
|
{
|
|
int Port { get; set; }
|
|
|
|
string Domain { get; set; }
|
|
|
|
List<XrayType> Types { get; set; }
|
|
}
|
|
}
|