mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
12 lines
209 B
C#
12 lines
209 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace ElectronNET.API.Entities
|
|||
|
|
{
|
|||
|
|
public class BitmapOptions
|
|||
|
|
{
|
|||
|
|
public double ScaleFactor { get; set; } = 1.0d;
|
|||
|
|
}
|
|||
|
|
}
|