Files
Electron.NET/src/ElectronNET.API/API/Entities/CreateFromBufferOptions.cs

23 lines
522 B
C#
Raw Normal View History

namespace ElectronNET.API.Entities
{
2020-05-06 19:14:34 -04:00
/// <summary>
///
/// </summary>
public class CreateFromBufferOptions
{
2020-05-06 19:14:34 -04:00
/// <summary>
/// Gets or sets the width
/// </summary>
public int? Width { get; set; }
2020-05-06 19:14:34 -04:00
/// <summary>
/// Gets or sets the height
/// </summary>
public int? Height { get; set; }
2020-05-06 19:14:34 -04:00
/// <summary>
/// Gets or sets the scalefactor
/// </summary>
public float ScaleFactor { get; set; } = 1.0f;
}
}