Files
Electron.NET/ElectronNET.API/Entities/Rectangle.cs

40 lines
844 B
C#
Raw Normal View History

2017-10-15 21:39:52 +02:00
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
2017-10-15 21:39:52 +02:00
public class Rectangle
{
/// <summary>
/// Gets or sets the x.
/// </summary>
/// <value>
/// The x.
/// </value>
2017-10-15 21:39:52 +02:00
public int X { get; set; }
/// <summary>
/// Gets or sets the y.
/// </summary>
/// <value>
/// The y.
/// </value>
2017-10-15 21:39:52 +02:00
public int Y { get; set; }
/// <summary>
/// Gets or sets the width.
/// </summary>
/// <value>
/// The width.
/// </value>
2017-10-15 21:39:52 +02:00
public int Width { get; set; }
/// <summary>
/// Gets or sets the height.
/// </summary>
/// <value>
/// The height.
/// </value>
2017-10-15 21:39:52 +02:00
public int Height { get; set; }
}
}