1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 13:46:08 +03:00
ProxySU/ProxySuper.Core/Models/Projects/NaiveProxySettings.cs

31 lines
665 B
C#
Raw Normal View History

2021-05-20 13:32:17 +03:00
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
{
2021-05-24 13:57:17 +03:00
public NaiveProxySettings()
{
Port = 443;
}
public List<int> FreePorts => new List<int>();
public ProjectType Type { get; set; } = ProjectType.NaiveProxy;
2021-05-20 13:32:17 +03:00
public int Port { get; set; }
public string Domain { get; set; }
2021-05-24 13:57:17 +03:00
public string UserName { get; set; }
2021-05-20 13:32:17 +03:00
2021-05-24 13:57:17 +03:00
public string Password { get; set; }
2021-05-25 13:28:37 +03:00
public string MaskDomain { get; set; }
2021-05-20 13:32:17 +03:00
}
}