mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
13 lines
294 B
C#
13 lines
294 B
C#
|
|
namespace ElectronNET.API.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public class ImageOptions
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the scale factor
|
||
|
|
/// </summary>
|
||
|
|
public float ScaleFactor { get; set; } = NativeImage.DefaultScaleFactor;
|
||
|
|
}
|
||
|
|
}
|