namespace ElectronNET.API.Entities
{
///
///
///
public class AddRepresentationOptions
{
///
/// Gets or sets the width
///
public int? Width { get; set; }
///
/// Gets or sets the height
///
public int? Height { get; set; }
///
/// Gets or sets the scalefactor
///
public float ScaleFactor { get; set; } = 1.0f;
///
/// Gets or sets the buffer
///
public byte[] Buffer { get; set; }
///
/// Gets or sets the dataURL
///
public string DataUrl { get; set; }
}
}