Newer
Older
brewdente
committed
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// Requests that the node is sent to the caller given its path. // FIXME, use XPath
/// </summary>
[CommandResponse(ProtocolName.DOM.PushNodeByPathToFrontend)]
public class PushNodeByPathToFrontendCommandResponse
{
/// <summary>
/// Gets or sets Id of the node for given path.
/// </summary>
public long NodeId { get; set; }
}
}