Select Git revision
ShinyThings.cs
MoveToCommandResponse.cs 449 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// Moves node into the new container, places it before the given anchor.
/// </summary>
[CommandResponse(ProtocolName.DOM.MoveTo)]
public class MoveToCommandResponse
{
/// <summary>
/// Gets or sets New id of the moved node.
/// </summary>
public long NodeId { get; set; }
}
}