mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-06 05:34:35 +00:00
14 lines
273 B
C#
14 lines
273 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class BitmapOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the scale factor
|
|
/// </summary>
|
|
public float ScaleFactor { get; set; } = 1.0f;
|
|
}
|
|
}
|