mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-10 05:36:57 +00:00
14 lines
299 B
C#
14 lines
299 B
C#
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;
|
|
}
|
|
}
|