Select Git revision
ShapeOutsideInfo.cs
ShapeOutsideInfo.cs 579 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// CSS Shape Outside details.
/// </summary>
public class ShapeOutsideInfo
{
/// <summary>
/// Gets or sets Shape bounds
/// </summary>
public double[] Bounds { get; set; }
/// <summary>
/// Gets or sets Shape coordinate details
/// </summary>
public object[] Shape { get; set; }
/// <summary>
/// Gets or sets Margin shape bounds
/// </summary>
public object[] MarginShape { get; set; }
}
}