2020-05-06 19:14:34 -04:00
|
|
|
|
namespace ElectronNET.API.Entities
|
2020-04-26 19:21:29 -04:00
|
|
|
|
{
|
2020-05-06 19:14:34 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
2020-04-26 19:21:29 -04:00
|
|
|
|
public class ResizeOptions
|
|
|
|
|
|
{
|
2020-05-06 19:14:34 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the width
|
|
|
|
|
|
/// </summary>
|
2020-04-26 19:21:29 -04:00
|
|
|
|
public int? Width { get; set; }
|
2020-05-06 19:14:34 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the height
|
|
|
|
|
|
/// </summary>
|
2020-04-26 19:21:29 -04:00
|
|
|
|
public int? Height { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// good, better, or best. Default is "best";
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Quality { get; set; } = "best";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|