Files
Electron.NET/ElectronNET.API/Entities/AddRepresentationOptions.cs

11 lines
316 B
C#
Raw Normal View History

namespace ElectronNET.API.Entities
{
public class AddRepresentationOptions
{
public int? Width { get; set; }
public int? Height { get; set; }
public float ScaleFactor { get; set; } = 1.0f;
public byte[] Buffer { get; set; }
public string DataUrl { get; set; }
}
}