namespace ElectronNET.API.Entities
{
///
///
///
public class ResizeOptions
{
///
/// Gets or sets the width
///
public int? Width { get; set; }
///
/// Gets or sets the height
///
public int? Height { get; set; }
///
/// good, better, or best. Default is "best";
///
public string Quality { get; set; } = "best";
}
}