mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
22 lines
491 B
C#
22 lines
491 B
C#
|
namespace Launcher.Model
|
|||
|
{
|
|||
|
public class ProxyConfig
|
|||
|
{
|
|||
|
|
|||
|
public ProxyConfig(string proxyServer, bool usehttp = false, string proxyPort = "25565")
|
|||
|
{
|
|||
|
ProxyServer = proxyServer;
|
|||
|
UseHttp = usehttp;
|
|||
|
ProxyPort = proxyPort;
|
|||
|
}
|
|||
|
|
|||
|
public string ProxyServer { get; set; }
|
|||
|
|
|||
|
public string ProxyPort { get; set; }
|
|||
|
|
|||
|
public bool UseHttp { get; set; }
|
|||
|
public bool ProxyEnable { get; internal set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|