1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySuper.Core/Models/Projects/NaiveProxySettings.cs
2021-05-25 18:28:37 +08:00

31 lines
665 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.Models.Projects
{
public class NaiveProxySettings : IProjectSettings
{
public NaiveProxySettings()
{
Port = 443;
}
public List<int> FreePorts => new List<int>();
public ProjectType Type { get; set; } = ProjectType.NaiveProxy;
public int Port { get; set; }
public string Domain { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string MaskDomain { get; set; }
}
}