blob: 0bc795371360c2c513d36ac530feca860921305e [file] [log] [blame] [edit]
using System;
using Newtonsoft.Json;
namespace OpenQA.Selenium.Environment
{
[JsonObject]
public class TestWebServerConfig
{
[JsonProperty]
public bool CaptureConsoleOutput { get; set; }
[JsonProperty]
public bool HideCommandPromptWindow { get; set; }
[JsonProperty]
public string JavaHomeDirectory { get; set; }
public string Port { get; set; }
}
}