using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LANCommander.SDK.PowerShell.Models { public class Screen { public bool Primary { get; set; } public Bounds Bounds { get; set; } public int Width { get; set; } public int Height { get; set; } public int RefreshRate { get; set; } public int BitsPerPixel { get; set; } } }