proxy-server-sharp/ProxyServerSharp/Interfaces/IProxyServerConfiguration.cs

12 lines
269 B
C#
Raw Permalink Normal View History

using ProxyServerSharp.Enums;
namespace ProxyServerSharp.Interfaces
{
public interface IProxyServerConfiguration
{
int Port { get; set; }
int TransferUnitSize { get; set; }
AuthenticationType AuthenticationType { get; set; }
}
}