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

20 lines
516 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
{
public int Port { get; set; }
public string Domain { get; set; }
public List<int> FreePorts => throw new NotImplementedException();
public ProjectType Type { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
}
}