using Newtonsoft.Json;
namespace ElectronNET.API.Entities
{
///
///
///
public class Display
{
///
///
///
public Rectangle Bounds { get; set; }
///
/// Unique identifier associated with the display.
///
public string Id { get; set; }
///
/// Can be 0, 90, 180, 270, represents screen rotation in clock-wise degrees.
///
public int Rotation { get; set; }
///
/// Output device's pixel scale factor.
///
public int ScaleFactor { get; set; }
///
///
///
public Size Size { get; set; }
///
/// Can be available, unavailable, unknown.
///
public string TouchSupport { get; set; }
///
///
///
public Rectangle WorkArea { get; set; }
///
///
///
public Size WorkAreaSize { get; set; }
}
}