namespace ElectronNET.API.Entities { /// /// Options for NativeImage.resize: optional width/height and quality. /// /// Up-to-date with Electron API 39.2 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"; } }