mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-15 13:16:03 +00:00
Add full NativeImage support for Electron.NET
This commit is contained in:
13
ElectronNET.API/Entities/CreateFromBitmapOptions.cs
Normal file
13
ElectronNET.API/Entities/CreateFromBitmapOptions.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public class CreateFromBitmapOptions
|
||||
{
|
||||
public int? Width { get; set; }
|
||||
public int? Height { get; set; }
|
||||
public float ScaleFactor { get; set; } = 1.0f;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user