Sweaty-Launcher/Model/ProxyConfig.cs

22 lines
491 B
C#
Raw Normal View History

2023-02-11 02:19:10 +00:00
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; }
}
}