blob: c473332891ca19e674d24f82f786d4e26d564a33 [file] [edit]
namespace OpenQA.Selenium.Environment
{
public class DriverStartingEventArgs
{
DriverService service;
DriverOptions options;
public DriverStartingEventArgs(DriverService service, DriverOptions options)
{
this.Service = service;
this.Options = options;
}
public DriverService Service { get => service; set => service = value; }
public DriverOptions Options { get => options; set => options = value; }
}
}