Select Git revision
GetHighlightObjectForTestCommandResponse.cs
GetHighlightObjectForTestCommandResponse.cs 438 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// For testing.
/// </summary>
[CommandResponse(ProtocolName.DOM.GetHighlightObjectForTest)]
public class GetHighlightObjectForTestCommandResponse
{
/// <summary>
/// Gets or sets Highlight data for the node.
/// </summary>
public object Highlight { get; set; }
}
}