Select Git revision
GetBoxModelCommandResponse.cs
GetBoxModelCommandResponse.cs 438 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// Returns boxes for the currently selected nodes.
/// </summary>
[CommandResponse(ProtocolName.DOM.GetBoxModel)]
public class GetBoxModelCommandResponse
{
/// <summary>
/// Gets or sets Box model for the node.
/// </summary>
public BoxModel Model { get; set; }
}
}