Newer
Older
brewdente
committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// Box model.
/// </summary>
public class BoxModel
{
/// <summary>
/// Gets or sets Content box
/// </summary>
public double[] Content { get; set; }
/// <summary>
/// Gets or sets Padding box
/// </summary>
public double[] Padding { get; set; }
/// <summary>
/// Gets or sets Border box
/// </summary>
public double[] Border { get; set; }
/// <summary>
/// Gets or sets Margin box
/// </summary>
public double[] Margin { get; set; }
/// <summary>
/// Gets or sets Node width
/// </summary>
public long Width { get; set; }
/// <summary>
/// Gets or sets Node height
/// </summary>
public long Height { get; set; }
/// <summary>
/// Gets or sets Shape outside coordinates
/// </summary>
public ShapeOutsideInfo ShapeOutside { get; set; }
}
}