namespace ElectronNET.API.Entities
{
///
/// Options for nativeImage.toBitmap; supports optional scaleFactor (defaults to 1.0) per MCP.
///
/// Up-to-date with Electron API 39.2
public class ToBitmapOptions
{
///
/// Gets or sets the image scale factor. Defaults to 1.0.
///
public float ScaleFactor { get; set; } = 1.0f;
}
}