mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
11 lines
306 B
C#
11 lines
306 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
public class AddRepresentationOptions
|
|
{
|
|
public int? Width { get; set; }
|
|
public int? Height { get; set; }
|
|
public int ScaleFactor { get; set; }
|
|
public byte[] Buffer { get; set; }
|
|
public string DataUrl { get; set; }
|
|
}
|
|
} |