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

24 lines
493 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 Size
{
/// <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; }
}
}