namespace ElectronNET.API.Entities
{
///
///
///
public class CreateFromBitmapOptions
{
///
/// Gets or sets the width
///
public int? Width { get; set; }
///
/// Gets or sets the height
///
public int? Height { get; set; }
///
/// Gets or sets the scalefactor
///
public float ScaleFactor { get; set; } = 1.0f;
}
}