blob: c2c0c7b29a0e58aedda609485066045eba2583a6 [file] [log] [blame] [edit]
namespace OpenQA.Selenium.Remote
{
/// <summary>
/// Represents the result of merging multiple <see cref="DriverOptions"/>.
/// </summary>
public class DriverOptionsMergeResult
{
/// <summary>
/// Gets or sets a value indicating whether the DriverOptions would conflict when merged with another option
/// </summary>
public bool IsMergeConflict { get; set; }
/// <summary>
/// Gets or sets the name of the name of the option that is in conflict.
/// </summary>
public string MergeConflictOptionName { get; set; }
}
}