namespace ElectronNET.API.Entities;
///
///
///
public class Margins
{
///
/// Can be `default`, `none`, `printableArea`, or `custom`. If `custom` is chosen,
/// you will also need to specify `top`, `bottom`, `left`, and `right`.
///
public string MarginType { get; set; }
///
/// The top margin of the printed web page, in pixels.
///
public int Top { get; set; }
///
/// The bottom margin of the printed web page, in pixels.
///
public int Bottom { get; set; }
///
/// The left margin of the printed web page, in pixels.
///
public int Left { get; set; }
///
/// The right margin of the printed web page, in pixels.
///
public int Right { get; set; }
}