namespace ElectronNET.API.Entities
{
///
/// Options for creating a new
///
public class CreateOptions
{
///
/// 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; } = NativeImage.DefaultScaleFactor;
}
}