blob: 5e6d6fd1decb5037c19962fab2a0fa837899e50b [file] [edit]
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenQA.Selenium.Environment
{
[JsonObject]
public class WebsiteConfig
{
[JsonProperty]
public string Protocol { get; set; }
[JsonProperty]
public string HostName { get; set; }
[JsonProperty]
public string Port { get; set; }
[JsonProperty]
public string SecurePort { get; set; }
[JsonProperty]
public string Folder { get; set; }
}
}