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