mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-20 13:44:46 +00:00
9 lines
215 B
C#
9 lines
215 B
C#
|
|
namespace ElectronNET.API.Entities
|
||
|
|
{
|
||
|
|
public class CreateFromBufferOptions
|
||
|
|
{
|
||
|
|
public int Width { get; set; }
|
||
|
|
public int Height { get; set; }
|
||
|
|
public int ScaleFactor { get; set; }
|
||
|
|
}
|
||
|
|
}
|