mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
18 lines
388 B
C#
18 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
public class ResizeOptions
|
|
{
|
|
public int? Width { get; set; }
|
|
public int? Height { get; set; }
|
|
|
|
/// <summary>
|
|
/// good, better, or best. Default is "best";
|
|
/// </summary>
|
|
public string Quality { get; set; } = "best";
|
|
}
|
|
}
|