namespace ElectronNET.API.Entities { /// /// /// public class Rectangle { /// /// Gets or sets the x. /// /// /// The x. /// public int X { get; set; } /// /// Gets or sets the y. /// /// /// The y. /// public int Y { get; set; } /// /// Gets or sets the width. /// /// /// The width. /// public int Width { get; set; } /// /// Gets or sets the height. /// /// /// The height. /// public int Height { get; set; } } }